溫馨提示×

Matplotlib中怎么添加箭頭標注

小億
181
2024-05-13 11:36:14
欄目: 編程語言

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

0