增加matplotlib图例中符号的大小?

时间:2018-04-12 15:30:09

标签: matplotlib legend

我用这样的标记画出一个情节:

plt.scatter(xs1, ys1, s=12, linewidths=0, marker='o', label='hello')
plt.scatter(xs2, ys2, s=12, linewidths=0, marker='x', label='hello')

这会在图表中生成正确的大小,但图例中的符号难以理解?

1 个答案:

答案 0 :(得分:3)

我在matplotlib.pyplot.legend找到了解决方案。该图例采用了一个属性' markerscale'。

plt.legend(loc='best',markerscale=2)