Open adrbmdns opened 7 months ago
Thanks for reporting, hm, looks like the legend artists are inheriting a zero marker edgewidth from somewhere. You can fix it by doing
plt.setp(g.legend.legend_handles, markeredgewidth=1)
Thanks for responding this quick. The solution works!
This code is from the seaborn tutorial - An introduction to seaborn.
In the legend, it doesn't show the marker handle.
But when I change to solid markers
marker="."
andmarker="X"
, it will show the marker handle in legend. See,