如何在 matplotlib 中自定义标记/符号属性?
示例命令:
prop = matplotlib.pyplot.scatter(x,y,s=s,c=c)
dir(prop)
显示 set_edgecolor、set_edgecolors、set_linestyle、set_linestyles - 为什么同一件事有这么多变化?
另外,如何去除边缘颜色?将值设置为 None
不会执行任何操作。绘图后如何更改标记大小?似乎没有我可以访问的标记大小属性...
编辑
如果符号是通过plyplot.plot
生成的,则似乎有一个标记大小属性可以更改。但对于 pyplot.scatter 来说,不存在。
Example command:
prop = matplotlib.pyplot.scatter(x,y,s=s,c=c)
dir(prop)
shows set_edgecolor, set_edgecolors, set_linestyle, set_linestyles - why so many variations on the same thing?
Also, how do I remove the edgecolors? Setting values to None
does nothing. And how do I change the marker size after the plotting? There does not appear to be a markersize attribute that I can access...
Edit
If the symbols are generated through plyplot.plot
, there is a markersize attribute to change it seems. But with pyplot.scatter
, not present.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可以尝试使用
'none'
来看看是否可以解决您的边缘颜色问题。这通常将属性设置为无颜色。It'd give using
'none'
a go to see if that solves your issue with edgecolor. That typically sets attributes to no color.