matplotlib

Matplotlib中怎么使用图像注解技术

小亿
86
2024-05-21 14:16:22
栏目: 编程语言

在Matplotlib中,可以使用annotate()方法来添加图像注解。下面是一个简单的例子:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]

plt.plot(x, y)
plt.annotate('Max Value', xy=(x[y.index(max(y))], max(y)), xytext=(3, 25),
             arrowprops=dict(facecolor='black', shrink=0.05))
plt.show()

在这个例子中,annotate()方法接受以下参数:

通过调整这些参数,可以根据需要添加和自定义图像注解。

0
看了该问题的人还看了