matplotlib空传奇句柄

时间:2013-06-05 14:07:06

标签: python matplotlib legend

我想在python的matplotib图中为一个图例添加一些文字。我在考虑创造一个空手柄,有什么办法吗?已经尝试使用类似于:

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

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

如果这不可能有任何其他想法吗?

我正在考虑这样的事情:

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

谢谢!

1 个答案:

答案 0 :(得分:6)

空条目和标题:

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()

enter image description here