使用matplotlib注释图 [英] annotate a plot using matplotlib

查看:96
本文介绍了使用matplotlib注释图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用它来绘制包含特定时刻(例如高亮)的图片

I am using this to making a plot with contains in specific moment something such as highlight

plt.axis('normal')
plt.axvspan(76, 76, facecolor='g', alpha=1)
plt.plot(ts.e1, 'r',linewidth=1.5)
plt.ylabel("Anger",fontsize=14,color='blue')
plt.ylim(ymax=0.04)
plt.xlim(xmax=122)
plt.grid(True)
plt.title("Anger - Real Events", fontsize=20,color='black')
plt.xlabel('minutes', fontsize=14, color='b')
plt.show()

我是否可以在其中添加"span 1"之类的水平文本?

Is there any idea if i could add horizontal text like 'span 1' in this:

plt.axvspan(76, 76, facecolor='g', alpha=1)

还是使用文本"line1"并在此范围内显示箭头?

or using the text 'line1' and have a arrow to show in this span?

推荐答案

以下是显示跨度箭头的方法:

Here's how you can have an arrow showing to the span:

import matplotlib.pyplot as plt

plt.axvspan(76, 76, facecolor='g', alpha=1)
plt.annotate('This is awesome!', 
             xy=(76, 0.75),  
             xycoords='data',
             textcoords='offset points',
             arrowprops=dict(arrowstyle="->"))
plt.show()

有关注释的更多信息,请参见文档.

For more info about annotate see docs.

以上代码的输出:

这篇关于使用matplotlib注释图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆