-1
I’m generating a bar graph of deaths per day, I’d like to put labels on the bars to show number for each day.
plt.figure(figsize=(12, 8))
plt.bar(df2['Data'], df2['dif_mortes'], color='royalblue', width=0.8)
plt.xticks(df2['Data'], rotation=60, fontsize=14)
plt.yticks(fontsize=14)
plt.show()
Can someone help me with this?