在Matplotlib中,可以使用annotate
函數(shù)來添加箭頭標注。示例如下:
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
函數(shù)用于添加箭頭標注,參數(shù)xy
指定箭頭的位置,參數(shù)xytext
指定文本的位置,參數(shù)arrowprops
用于設(shè)置箭頭的屬性。更多關(guān)于annotate
函數(shù)的用法,請參考Matplotlib官方文檔。