更改 matplotlib 轴设置

发布于 2024-10-04 06:30:42 字数 244 浏览 2 评论 0原文

如何控制 pyplot 图的轴设置。我已经简单地完成了

    pylab.plot(*self.plot_generator(low, high))

    pylab.show()

,我得到了我想要的

alt text

但我希望 x 轴位于 0的在底部。我该怎么做呢?

How do I get control over the axis settings of a pyplot plot. I have simply done

    pylab.plot(*self.plot_generator(low, high))

    pylab.show()

and I get this which is what I want

alt text

but I want the x axis to be at 0 instead of at the bottom. How would I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仄言 2024-10-11 06:30:42
# create some data
x = np.linspace(-np.pi,np.pi,100)
y = np.cos(2.5*x)

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y, mfc='orange', mec='orange', marker='.')

# using 'spines', new in Matplotlib 1.0
ax.spines['left'].set_position('zero')
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position('zero')
ax.spines['top'].set_color('none')
ax.spines['left'].set_smart_bounds(True)
ax.spines['bottom'].set_smart_bounds(True)
ax.xaxis.set_ticks_position('bottom')
ax.yaxis.set_ticks_position('left')

ax.axhline(linewidth=2, color='blue')
ax.axvline(linewidth=2, color='blue')
show()

替代文本

# create some data
x = np.linspace(-np.pi,np.pi,100)
y = np.cos(2.5*x)

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y, mfc='orange', mec='orange', marker='.')

# using 'spines', new in Matplotlib 1.0
ax.spines['left'].set_position('zero')
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position('zero')
ax.spines['top'].set_color('none')
ax.spines['left'].set_smart_bounds(True)
ax.spines['bottom'].set_smart_bounds(True)
ax.xaxis.set_ticks_position('bottom')
ax.yaxis.set_ticks_position('left')

ax.axhline(linewidth=2, color='blue')
ax.axvline(linewidth=2, color='blue')
show()

alt text

纸伞微斜 2024-10-11 06:30:42

要将 x 轴的起始位置设置为 0:

pylab.xlim(xmin=0)

将 y 轴的起始位置设置为 0:

pylab.ylim(ymin=0)

将这些行之一(或者如果您愿意,同时将两者)放在 pylab.plot 调用之后。

To set start of x-axis to 0:

pylab.xlim(xmin=0)

To set start of y-axis to 0:

pylab.ylim(ymin=0)

Put one of these lines (or both if you'd like) after the pylab.plot call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文