两个y轴具有相同的比例

时间:2013-03-20 21:16:50

标签: python matplotlib

我做了两个y轴和两个数据集的直方图,但是我无法将两个y轴的比例设置为相同的限制。

在这个例子http://matplotlib.org/examples/api/two_scales.html#api-two-scales中,我们的想法是将两个尺度从0到25.000。

有没有人对此案有所了解?

1 个答案:

答案 0 :(得分:3)

你有没有试过像:

...
ax2 = ax1.twiny()
a,b = 0,25000
ax1.set_ylim(a,b)
ax2.set_ylim(a,b)