3

我想在 python 的 matplotib 图中向图例中添加一些文本。我正在考虑创建一个空句柄,有什么办法吗?已经尝试过使用类似于:

ax.legend([handle1,handle2,None],[label1,label2,labelEmpty])

但是 legend 不接受 None 关键字。(我收到错误 $Legend 不支持无,请改用代理艺术家。$)

如果这是不可能的任何其他想法?

我正在考虑有类似的东西:

 ___________________________
|  handle1  -  label1       |
|  handle2  -  label2       |
|       labelEmpty          |
!___________________________!

谢谢!

4

1 回答 1

8

空条目和标题:

ax = gca()
h1, h2 = ax.plot(range(5), range(5), range(5), arange(5)**2)

r = matplotlib.patches.Rectangle((0,0), 1, 1, fill=False, edgecolor='none',
                                 visible=False)
ax.legend([h1, h2, r], ['a', 'b', 'c'], loc=0, title='test')
plt.draw()

在此处输入图像描述

于 2013-06-05T14:19:40.770 回答