6

我在 matplotlib 中有一个带有多个子图(轴)的图,我想注释轴内的点。但是,后续轴会覆盖先前轴的注释(例如,subplot(4,4,1) 上的注释位于 subplot(4,4,2) 下)。我已经将注释 zorder 设置得又好又高,但无济于事:/

我使用了Joe Kington很棒的DataCursor的修改版本来进行注释。

任何帮助将不胜感激

这是一个例子: 在此处输入图像描述

4

1 回答 1

9

一种方法是annotate从轴中弹出由创建的文本并将其添加到图形中。这样它将显示在所有子图的顶部。

作为您遇到的问题的一个简单示例:

import matplotlib.pyplot as plt

fig, axes = plt.subplots(nrows=5, ncols=5)
plt.setp(axes.flat, xticks=[], yticks=[], zorder=0)

ax = axes[0,0]
ax.annotate('Testing this out and seeing what happens', xy=(0.5, 0.5), 
            xytext=(1.1, .5), textcoords='axes fraction', zorder=100)

plt.show()

在此处输入图像描述

如果我们只是将文本对象从轴中弹出并将其添加到图形中,它将位于顶部:

import matplotlib.pyplot as plt

fig, axes = plt.subplots(nrows=5, ncols=5)
plt.setp(axes.flat, xticks=[], yticks=[], zorder=0)

ax = axes[0,0]
ax.annotate('Testing this out and seeing what happens', xy=(0.5, 0.5), 
            xytext=(1.1, .5), textcoords='axes fraction', zorder=100)

fig.texts.append(ax.texts.pop())

plt.show()

在此处输入图像描述

您提到了该DataCursor片段,并且您想更改annotate方法:

def annotate(self, ax):
    """Draws and hides the annotation box for the given axis "ax"."""
    annotation = ax.annotate(self.template, xy=(0, 0), ha='right',
            xytext=self.offsets, textcoords='offset points', va='bottom',
            bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=0.5),
            arrowprops=dict(arrowstyle='->', connectionstyle='arc3,rad=0')
            )
    # Put the annotation in the figure instead of the axes so that it will be on
    # top of other subplots.
    ax.figure.texts.append(ax.texts.pop())

    annotation.set_visible(False)
    return annotation

我还没有测试最后一点,但它应该可以工作......

于 2012-12-12T03:38:28.210 回答