import matplotlib.pyplot as plt height = [1204, 1119, 998] bars = ('Firma A', 'Firma B', 'Firma C') plt.figure(1) plt.barh(bars, height) plt.savefig('liggende_stolpe.pdf') plt.show()