在 matplotlib 中绘制共享 x 轴的两个图形
我必须在一个屏幕上绘制 2 个图表。 x 轴保持不变,但 y 轴应该不同。
我怎样才能在“matplotlib”中做到这一点?
I have to plot 2 graphs in a single screen. The x-axis remains the same but the y-axis should be different.
How can I do that in 'matplotlib'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
twinx
是您要寻找的函数; 这是一个如何使用它的示例。twinx
is the function you're looking for; here's an example of how to use it.subplot
可以让您绘制更多内容比同一张画布上的一个人物更重要。请参阅链接文档页面上的示例。示例目录中有一个共享轴图的示例,名为
shared_axis_demo.py
:subplot
will let you plot more than one figure on the same canvas. See the example on the linked documentation page.There is an example of a shared axis plot in the examples directory, called
shared_axis_demo.py
: