Note: this is fixed in 1.4.3 or later
I use the Seaborn plotting package and I just upgraded to the newest version of Matplotlib. Now, plots with dot symbols n
It would appear that this is due to a bug in Matplotlib.
https://github.com/matplotlib/matplotlib/issues/3711
https://github.com/mwaskom/seaborn/issues/344
You might just have to downgrade for the time being.
PS: What's up Doug.
A workaround (mentioned in the GitHub links in the other answer) is to explicitly set markeredgewidth
(or mew
) in the call to plot
:
plt.plot(x,y,'.', mew=1)