我不确定如何将几个点注释到同一个文本框。我通过将所有文本框放在同一位置找到了一种(非常)脏的方法,所以它基本上只是写在同一个位置,但我更愿意这样做。
以下是我目前的工作:
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"))