在Matplotlib中,可以使用annotate
函数来添加箭头标注。示例如下:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.annotate('Max', xy=(5, 10), xytext=(4, 8),
arrowprops=dict(facecolor='red', shrink=0.05))
plt.show()
在上面的示例中,annotate
函数用于添加箭头标注,参数xy
指定箭头的位置,参数xytext
指定文本的位置,参数arrowprops
用于设置箭头的属性。更多关于annotate
函数的用法,请参考Matplotlib官方文档。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Python中怎么安装Matplotlib库