我已经检查了kwargs的matplotlibs图例,但是找不到此选项。当我绘制图例时,文本旁边的颜色键将是正确的,但是我要删除的键有蓝色egdecolor。
想知道是否有人知道如何获得这种归因。
cm = matplotlib.colors.ListedColormap(random.sample(sns.palettes.color_palette('Reds').as_hex(), len(sns.palettes.color_palette('Spectral').as_hex())))
con.plot(column='suffix',
figsize=(15,15),
linewidth=2,
legend=True,
cmap=cm,
legend_kwds={'loc': 'lower center',
'ncol':len(con.columns),
'frameon':False,
'markerscale':3.0,
'bbox_to_anchor': (0.5, -0.05)})
plt.axis('off')
plt.show()