如何在 matplotlib 中自定义标记/符号属性?

发布于 2024-12-10 15:02:35 字数 396 浏览 2 评论 0原文

示例命令:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘你却要生生世世 2024-12-17 15:02:35

它可以尝试使用 'none' 来看看是否可以解决您的边缘颜色问题。这通常将属性设置为无颜色。

It'd give using 'none' a go to see if that solves your issue with edgecolor. That typically sets attributes to no color.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文