import matplotlib.pyplot as plt
cidades = [city for city, df in mv_cidade.groupby('Loja')]
plt.bar(mv_cidade['Loja'], mv_cidade['Faturamento'])
plt.ylabel('Faturamento em milhões')
plt.xlabel('Loja (por Estado)')
plt.xticks(cidades, rotation= 'vertical', size= 9)
plt.show()
Can anyone help?
I've already tried to put the "original" values
plt.yticks([6480300, 6868600, 7060500, 7303000, 7441800, 13111300, 14087900, 14867800, 22098300])