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