如何使用matplotlib将几个点注释到同一文本框?

时间:2014-05-04 19:57:45

标签: python matplotlib annotations

我不确定如何将几个点注释到同一个文本框。我通过将所有文本框放在同一位置找到了一种(非常)脏的方法,所以它基本上只是写在同一个位置,但我更愿意这样做。

以下是我目前的工作:

def my_annotate(p, s, xy_arr=[], pos=(0, 0)):
    for xy in xy_arr:
        p.annotate(s, xy, pos,
                   arrowprops=dict(arrowstyle="-|>", connectionstyle="arc3,rad=0.2", fc="w"))

0 个答案:

没有答案