如何在python中的图形绘图线上显示注释?

时间:2019-03-29 14:39:31

标签: python pandas plot annotations line

我有一个带有用户和组的数据框。 我想在特定点绘制带有注释的绘图线。

我使用Python 3和熊猫的最新版本。

我尝试了这段代码,图形还可以,但是注释不在图形外。

 graph = df[df['A']=='OK'].user_id.groupby(df['B']).nunique().plot(kind='line',title ='ABCD')

graph.annotate('blabla ',xy=(15,18000),xytext = (15,15000))

这是结果:

enter image description here

我想:

enter image description here

您知道该怎么做吗? 谢谢

0 个答案:

没有答案