matplotlib 两个y轴具有相同的比例尺

pkmbmrz7  于 2023-10-24  发布在  其他
关注(0)|答案(1)|浏览(120)

我用两个y轴和两个数据集做了一个直方图,但我不能将两个y轴的尺度设置为相同的限制。
在这个例子http://matplotlib.org/examples/api/two_scales.html#api-two-scales中,想法是将两个尺度都设置为从0到25.000。
有人对这个案子有什么想法吗?

xsuvu9jc

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)

相关问题