图例句柄中的圆圈在matplotlib中不起作用

时间:2018-08-31 08:26:55

标签: python matplotlib legend legend-properties

我使用的是Ubuntu 18.04,我的matplotlib版本为2.1.1。我正在尝试绘制圆形补丁作为人物图例手柄。 This example提供了一种使用自定义句柄的方法,如下所示:

import matplotlib.patches as mpatches
import matplotlib.pyplot as plt

red_patch = mpatches.Patch(color='red', label='The red data')
plt.legend(handles=[red_patch])

plt.show()

但是我想要一个圆形手柄而不是一个矩形补丁。所以我尝试了:

将matplotlib.pyplot导入为plt 将matplotlib.patches导入为mpatches

fig, ax = plt.subplots(1, 1)
circle = mpatches.Circle(xy = (0.5, 0.5), radius = 100,color = "green")

ax.plot([1, 2, 3], [1, 2, 3])

fig.legend(handles = [circle], labels = ["some funny label"])
plt.show()

但是,我仍然在错误的位置上得到一个矩形补丁。我到底想念什么?

enter image description here

编辑:我是专门问我的代码有什么问题。有变通办法会很有帮助,但是我看不到上面的代码有什么问题。

1 个答案:

答案 0 :(得分:0)

docs中,他们的操作如下:

from matplotlib.lines import Line2D
import matplotlib.pyplot as plt

red_circle = Line2D([0], [0], marker='o', color='w', label='Circle',
                        markerfacecolor='r', markersize=15),
plt.legend(handles=red_circle)

enter image description here