matplotlib 散点图不一致
我正在尝试在 matplotlib 中获取散点图。我在 jupyter 笔记本中使用 matplotlib 版本 3.3.4。 但是,我无法得到实心填充的图形。我尝试同时使用“.”和'o'作为标记,结果类似。
我的代码:
plt.scatter(x[:,0], x[:,1], c='k', s=0.1,marker='.')
输出:
作为您可以看到,散点图有空心圆圈,里面有一个点。这是一个已知问题吗?有什么补救办法吗?
I'm trying to obtain scatterplot in matplotlib. I'm using version 3.3.4 of matplotlib in jupyter notebook.
However, I cannot get a figure with solid fill. I tried using both '.' and 'o' as marker, the result is similar.
My code:
plt.scatter(x[:,0], x[:,1], c='k', s=0.1, marker='.')
Output:
As you can see, the scatterplot has hollow circles with a dot inside. Is this a known issue? any remedy to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论