gpt4 book ai didi

python - 绘制水平线,y = matplotlib 中的常量

转载 作者:太空宇宙 更新时间:2023-11-04 08:09:14 25 4
gpt4 key购买 nike

我正在使用以下代码在 matplotlib 中绘制一条水平线:

axScatter.axhline(y=0.285987, xmin=-1.5, xmax=0.491, color='black', linestyle=':')

然而,它只是稍微有点出格:

enter image description here

我宁愿有一个函数,其中 y = 0.285987 在 x 范围:-1.5 和 ~0.72 之间。有谁知道如何在不使用 axhline 的情况下绘制一条线?

最佳答案

axhline xmin 和 xmax 将在轴坐标中给出(因此 0.5 是轴的中间)。如果你想在数据坐标中有一条精确的线,你可以使用 plot:

x = [-1.5, 0.72]
y = [0.285987, 0.285987]
ax.plot(x, y)

关于python - 绘制水平线,y = matplotlib 中的常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25963262/

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