Matplotlib 透明线图

发布于 2024-10-05 11:18:02 字数 241 浏览 2 评论 0原文

我正在 matplotlib 中绘制两条相似的轨迹,并且我想以部分透明度绘制每条线,以便红色(第二个绘制)不会遮盖蓝色。

alt text

编辑:这是带有透明线条的图像。

替代文本

I am plotting two similar trajectories in matplotlib and I'd like to plot each of the lines with partial transparency so that the red (plotted second) doesn't obscure the blue.

alt text

EDIT: Here's the image with transparent lines.

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

土豪 2024-10-12 11:18:02

简单明了:(

plt.plot(x, y, 'r-', alpha=0.7)

我知道我没有添加任何新内容,但简单的答案应该是可见的)。

Plain and simple:

plt.plot(x, y, 'r-', alpha=0.7)

(I know I add nothing new, but the straightforward answer should be visible).

自由如风 2024-10-12 11:18:02

绘制完所有线条后,我能够将所有线条的透明度设置如下:

for l in fig_field.gca().lines:
    l.set_alpha(.7)

编辑:请参阅乔在评论中的回答。

After I plotted all the lines, I was able to set the transparency of all of them as follows:

for l in fig_field.gca().lines:
    l.set_alpha(.7)

EDIT: please see Joe's answer in the comments.

夏日落 2024-10-12 11:18:02

这实际上取决于您使用什么函数来绘制线条,但请尝试查看您使用的函数是否采用 alpha 值并将其设置为 0.5 之类的值。如果这不起作用,请尝试获取线条对象并直接设置它们的 alpha 值。

It really depends on what functions you're using to plot the lines, but try see if the on you're using takes an alpha value and set it to something like 0.5. If that doesn't work, try get the line objects and set their alpha values directly.

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