在matplotlib

时间:2019-05-21 20:50:02

标签: python matplotlib

我正在使用Matplotlib 3.1和parasite_axes创建最多5个寄生y轴的图,我想自动分隔yaxes而不是在代码中指定偏移量。目前,我必须绘制图以查看轴是否重叠,然后手动调整图的宽度以为寄生轴形成正确的空间量,然后手动向每个轴添加偏移量以使其不重叠。如果图形中有任何变化,例如DPI或标签中的位数,那么我必须再次进行所有这些操作。

我试图获得仅yaxis的bbox,但除了整个情节的bbox之外,我似乎什么也得不到。不知道轴的宽度,似乎没有任何方法可以计算出这些轴的正确间距。

#Example from the matplotlib website:
from mpl_toolkits.axes_grid1 import host_subplot
import mpl_toolkits.axisartist as AA
import matplotlib.pyplot as plt

host = host_subplot(111, axes_class=AA.Axes)
plt.subplots_adjust(right=0.75)

par1 = host.twinx()
par2 = host.twinx()

offset = 60
new_fixed_axis = par2.get_grid_helper().new_fixed_axis
par2.axis["right"] = new_fixed_axis(loc="right",
                                axes=par2,
                                offset=(offset, 0))

par1.axis["right"].toggle(all=True)
par2.axis["right"].toggle(all=True)

host.set_xlim(0, 2)
host.set_ylim(0, 2)

host.set_xlabel("Distance")
host.set_ylabel("Density")
par1.set_ylabel("Temperature")
par2.set_ylabel("Velocity")

p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density")
p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature")
p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity")

par1.set_ylim(0, 4)
par2.set_ylim(1, 65)

host.legend()

host.axis["left"].label.set_color(p1.get_color())
par1.axis["right"].label.set_color(p2.get_color())
par2.axis["right"].label.set_color(p3.get_color())

plt.show()

0 个答案:

没有答案