我用两个y轴和两个数据集做了一个直方图,但我不能将两个y轴的尺度设置为相同的限制。在这个例子http://matplotlib.org/examples/api/two_scales.html#api-two-scales中,想法是将两个尺度都设置为从0到25.000。有人对这个案子有什么想法吗?
xsuvu9jc1#
你有没有尝试过这样的东西:
... # twinx to duplicate y axis ax2 = ax1.twinx() # set the same limits for both axis a,b = 0,25000 ax1.set_ylim(a,b) ax2.set_ylim(a,b)
1条答案
按热度按时间xsuvu9jc1#
你有没有尝试过这样的东西: