如果您有多个包含辅助 y 轴的子图(使用twinx创建),您如何在子图之间共享这些辅助 y 轴?我希望它们以自动方式平等缩放(因此不要在之后手动设置 y 限制)。对于主要的 y 轴,这可以通过在 subplot 的调用中使用关键字sharey来实现。
下面的示例显示了我的尝试,但它未能共享两个子图的辅助 y 轴。我正在使用 Matplotlib/Pylab:
ax = []
#create upper subplot
ax.append(subplot(211))
plot(rand(1) * rand(10),'r')
#create plot on secondary y-axis of upper subplot
ax.append(ax[0].twinx())
plot(10*rand(1) * rand(10),'b')
#create lower subplot and share y-axis with primary y-axis of upper subplot
ax.append(subplot(212, sharey = ax[0]))
plot(3*rand(1) * rand(10),'g')
#create plot on secondary y-axis of lower subplot
ax.append(ax[2].twinx())
#set twinxed axes as the current axes again,
#but now attempt to share the secondary y-axis
axes(ax[3], sharey = ax[1])
plot(10*rand(1) * rand(10),'y')
这让我得到了类似的东西:
我使用axes()函数设置共享 y 轴的原因是twinx不接受sharey关键字。
我在 Win7 x64 上使用 Python 3.2。Matplotlib 版本是 1.2.0rc2。