标签: python matplotlib
我做了两个y轴和两个数据集的直方图,但是我无法将两个y轴的比例设置为相同的限制。
在这个例子http://matplotlib.org/examples/api/two_scales.html#api-two-scales中,我们的想法是将两个尺度从0到25.000。
有没有人对此案有所了解?
答案 0 :(得分:3)
你有没有试过像:
... ax2 = ax1.twiny() a,b = 0,25000 ax1.set_ylim(a,b) ax2.set_ylim(a,b)