可以使用Mat
pl
otlib库中的annotate()方法在折线图上添加文本标注。先将x轴和y轴的值分别存储到两个列表中,然后遍历每个点并在该点上添加文本标注即可。
示例代码如下:
import mat
pl
otlib.py
pl
ot as
pl
t
x轴和y轴的值
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
绘制折线图
pl
t.
pl
ot(x, y)
遍历每个点并添加标注
for i,j in zip(x,y):
pl
t.annotate(str(j), xy=(i,j))
添加坐标轴标签
pl
t.xlabel('X轴')
pl
t.ylabel('Y轴')
pl
t.show()