gpt4 book ai didi

python - matplotlib 绘图 沿绘图线的标签

转载 作者:行者123 更新时间:2023-12-01 04:58:49 29 4
gpt4 key购买 nike

matplotlib 社区的一个:

假设我有一条直线:

plot([37, 45], [-0.67778, -0.67778], '--k', lw=1.2)

我可以沿着线而不是在图例中向该线添加标签吗?即,类似于以下内容(但不是等高线图,只是普通的线图):

enter image description here

最佳答案

下面是一个例子,只是为了展示如何在不考虑外观的情况下完成它。有关注释图的更多信息,请参阅此 detailed demonstration .

import matplotlib.pyplot as plt
x = [37, 45]; y = [-0.67778, -0.67778]

# as an example for where to place the text we can use the mean
xmean = sum(i for i in x) / float(len(x))
ymean = sum(i for i in y) / float(len(y))

plt.plot(x, y, '--k', lw=1.2)
plt.annotate('some text', xy=(xmean,ymean), xycoords='data')
plt.show() # or plt.savefig('filename.png')

产量:

_soannotate.png

关于python - matplotlib 绘图 沿绘图线的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26768322/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com