matplotlib添加矩形到图不到轴

时间:2014-02-03 18:50:37

标签: python-2.7 matplotlib

我需要在matplotlib图上添加半透明皮肤。我正在考虑在图中添加一个矩形,其中alpha< 1和zorder足够高,以便绘制在所有内容之上。

我在考虑类似的东西

figure.add_patch(Rectangle((0,0),1,1, alpha=0.5, zorder=1000))

但我猜矩形只由Axes处理。有转机吗?

3 个答案:

答案 0 :(得分:16)

谷歌的其他人的迟到答案。

实际上有一种简单的方法,没有幻影轴,接近你原来的愿望。 Figure对象具有patches属性,您可以向其添加矩形:

fig, ax = plt.subplots(nrows=1, ncols=1)
ax.plot(np.cumsum(np.random.randn(100)))
fig.patches.extend([plt.Rectangle((0.25,0.5),0.25,0.25,
                                  fill=True, color='g', alpha=0.5, zorder=1000,
                                  transform=fig.transFigure, figure=fig)])

给出以下图片(我使用的是非默认主题):

Plot with rectangle attached to figure

transform参数使它使用图形级坐标,我认为这就是你想要的。

答案 1 :(得分:5)

您可以在图形顶部使用幻像轴,并根据需要更改修补程序,请尝试以下示例:

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
ax.xaxis.set_visible(False)
ax.yaxis.set_visible(False)
ax.set_zorder(1000)
ax.patch.set_alpha(0.5)
ax.patch.set_color('r')

ax2 = fig.add_subplot(111)
ax2.plot(range(10), range(10))

plt.show()

答案 2 :(得分:1)

如果您不使用子图,使用 gca() 会很容易。

from matplotlib.patches import Rectangle
fig = plt.figure(figsize=(12,8))
plt.plot([0,100],[0,100])
plt.gca().add_patch(Rectangle((25,50),15,15,fill=True, color='g', alpha=0.5, zorder=100, figure=fig))

enter image description here