2017-03-08 8 views
0

私は、次のmatplotlibのコードを持っている:Pythonのmatplotlibの:バーの上にカウント数を追加

enter image description here私は疑問に思って

はそれを追加することが可能である:

ax = my_df.plot(x='arrival_month', y='my_count' ,kind='bar', figsize = (20,10), fontsize = 16, color = 'b', alpha = 0.3) 
ax.set_xticklabels([t.get_text().split(" ")[0] for t in ax.get_xticklabels()]) 
ax.set_ylim([-50,300]) 
plt.show() 

は図を生成しますバーの上の数字を数える:

enter image description here

ありがとう!

ax.annotate('(%s, %s)' % xy, xy=xy, textcoords='data')

をループ状

答えて

0

何かがxyがxおよび各座標のy値を表すタプルである場合、動作しなければなりません。

これはanswer to another questionで提案されています。

MWEを送信した場合は、提案をテストすることもできます。具体的にはmy_dfのようなものを教えてください。

関連する問題