python画x y散点图 标注
时间: 2023-04-07 20:00:50 浏览: 164
python绘制散点图并标记序号的方法
5星 · 资源好评率100%
可以使用matplotlib库来画x y散点图,并使用annotate函数来标注。具体代码如下:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 画散点图
plt.scatter(x, y)
# 标注点
for i in range(len(x)):
plt.annotate('(%s, %s)' % (x[i], y[i]), xy=(x[i], y[i]), xytext=(x[i]+0.1, y[i]+0.1))
# 显示图像
plt.show()
```
其中,annotate函数的参数解释如下:
- s:标注文本内容
- xy:被标注点的坐标
- xytext:标注文本的坐标(相对于被标注点的偏移量)
阅读全文