在 matplotlib 中绘制共享 x 轴的两个图形

发布于 2024-08-03 22:22:08 字数 78 浏览 2 评论 0原文

我必须在一个屏幕上绘制 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 技术交流群。

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

发布评论

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

评论(2

请爱~陌生人 2024-08-10 22:22:08

subplot 可以让您绘制更多内容比同一张画布上的一个人物更重要。请参阅链接文档页面上的示例。

示例目录中有一个共享轴图的示例,名为 shared_axis_demo.py

from pylab import *

t = arange(0.01, 5.0, 0.01)
s1 = sin(2*pi*t)
s2 = exp(-t)
s3 = sin(4*pi*t)
ax1 = subplot(311)
plot(t,s1)
setp( ax1.get_xticklabels(), fontsize=6)

## share x only
ax2 = subplot(312, sharex=ax1)
plot(t, s2)
# make these tick labels invisible
setp( ax2.get_xticklabels(), visible=False)

# share x and y
ax3 = subplot(313,  sharex=ax1, sharey=ax1)
plot(t, s3)
xlim(0.01,5.0)
show() 

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:

from pylab import *

t = arange(0.01, 5.0, 0.01)
s1 = sin(2*pi*t)
s2 = exp(-t)
s3 = sin(4*pi*t)
ax1 = subplot(311)
plot(t,s1)
setp( ax1.get_xticklabels(), fontsize=6)

## share x only
ax2 = subplot(312, sharex=ax1)
plot(t, s2)
# make these tick labels invisible
setp( ax2.get_xticklabels(), visible=False)

# share x and y
ax3 = subplot(313,  sharex=ax1, sharey=ax1)
plot(t, s3)
xlim(0.01,5.0)
show() 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文