matplotlib 1.4.2 with Seaborn: line markers not functioning

后端 未结 2 2041
悲哀的现实
悲哀的现实 2021-01-12 14:10

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

相关标签:
2条回答
  • 2021-01-12 14:51

    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.

    0 讨论(0)
  • 2021-01-12 14:55

    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)
    
    0 讨论(0)
提交回复
热议问题