在matplotlib中显示坐标点的值
时间: 2024-05-06 17:19:57 浏览: 130
matplotlib 纵坐标轴显示数据值的实例
可以使用annotate()函数在图中显示坐标点的值。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, 'ro')
for i in range(len(x)):
plt.annotate('({}, {})'.format(x[i], y[i]), xy=(x[i], y[i]), xytext=(x[i]+0.2, y[i]))
plt.show()
```
这段代码会在图中的每个坐标点上显示其坐标值。annotate()函数的参数xy表示标注点的位置,xytext表示文本的位置。
阅读全文