Matplotlib:多个 y 轴,网格线应用于两个轴?
我有一个带有两个 y 轴的 Matplotlib 图,创建如下:
ax1 = fig.add_subplot(111)
ax1.grid(True, color='gray')
ax1.plot(xdata, ydata1, 'b', linewidth=0.5)
ax2 = ax1.twinx()
ax2.plot(xdata, ydata2, 'g', linewidth=0.5)
我需要网格线,但我希望它们应用于两个 y 轴,而不仅仅是左侧。每个轴的比例会有所不同。我得到的是仅与左侧轴上的值匹配的网格线。
Matplotlib 可以帮我解决这个问题还是我必须自己做?
编辑:我认为我并不完全清楚,我希望两个 y 轴上的主要刻度对齐,但比例和范围可能完全不同,这使得手动设置最小值和最大值变得很棘手实现这一点。我希望 matplotlib 能够为我完成这个“棘手”的工作。谢谢
I've got a Matplotlib graph with two y axes, created like:
ax1 = fig.add_subplot(111)
ax1.grid(True, color='gray')
ax1.plot(xdata, ydata1, 'b', linewidth=0.5)
ax2 = ax1.twinx()
ax2.plot(xdata, ydata2, 'g', linewidth=0.5)
I need grid lines but I want them to apply to both y axes not just the left one. The scales of each axes will differ. What I get is grid lines that only match the values on the left hand axes.
Can Matplotlib figure this out for me or do I have to do it myself?
Edit: Don't think I was completely clear, I want the major ticks on both y axes to be aligned but the scales and ranges are potentially quite different making it tricky to setup the mins and maxes manually to achieve this. I am hoping that matplotlib will be able to do this "tricky" bit for me. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
考虑这个简单的例子:
EDIT
Consider this simple example: