2つのグラフを1つの画面にプロットする必要があります。 x軸は同じままですが、y軸は異なるはずです。matplotlibでx軸を共有する2つのグラフをプロットする
「matplotlib」でどうすればいいですか?
2つのグラフを1つの画面にプロットする必要があります。 x軸は同じままですが、y軸は異なるはずです。matplotlibでx軸を共有する2つのグラフをプロットする
「matplotlib」でどうすればいいですか?
subplot
を使用すると、同じキャンバスに複数の図をプロットすることができます。リンクされたドキュメントページの例を参照してください。
examplesディレクトリ内の共有軸プロットの例があるが、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()
twinx
は、あなたが探している機能です。それを使用する方法のhere's an example。
twinx example http://matplotlib.sourceforge.net/_images/two_scales.png