更改 matplotlib 轴设置
如何控制 pyplot 图的轴设置。我已经简单地完成了
pylab.plot(*self.plot_generator(low, high))
pylab.show()
,我得到了我想要的
但我希望 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
but I want the x axis to be at 0 instead of at the bottom. How would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要将 x 轴的起始位置设置为 0:
将 y 轴的起始位置设置为 0:
将这些行之一(或者如果您愿意,同时将两者)放在
pylab.plot
调用之后。To set start of x-axis to 0:
To set start of y-axis to 0:
Put one of these lines (or both if you'd like) after the
pylab.plot
call.