在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官方文档。