在pyplot中,您可以使用zorder
选项或更改plot()
命令的顺序来更改不同图表的顺序。但是,当您通过ax2 = twinx()
添加替代轴时,新轴将始终覆盖旧轴(如documentation中所述)。
是否可以更改轴的顺序以将备选(双对)y轴移动到背景?
在下面的例子中,我想在直方图的顶部显示蓝线:
import numpy as np
import matplotlib.pyplot as plt
import random
# Data
x = np.arange(-3.0, 3.01, 0.1)
y = np.power(x,2)
y2 = 1/np.sqrt(2*np.pi) * np.exp(-y/2)
data = [random.gauss(0.0, 1.0) for i in range(1000)]
# Plot figure
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax2 = ax1.twinx()
ax2.hist(data, bins=40, normed=True, color='g',zorder=0)
ax2.plot(x, y2, color='r', linewidth=2, zorder=2)
ax1.plot(x, y, color='b', linewidth=2, zorder=5)
ax1.set_ylabel("Parabola")
ax2.set_ylabel("Normal distribution")
ax1.yaxis.label.set_color('b')
ax2.yaxis.label.set_color('r')
plt.show()
编辑:由于某种原因,我无法上传此代码生成的图像。我稍后再试。
答案 0 :(得分:12)
您可以设置轴的zorder
ax.set_zorder()
。然后,人们需要移除轴的背景,以便下面的轴仍然可见。
ax2 = ax1.twinx()
ax1.set_zorder(10)
ax1.patch.set_visible(False)