Matplotlib 透明线图
我正在 matplotlib 中绘制两条相似的轨迹,并且我想以部分透明度绘制每条线,以便红色(第二个绘制)不会遮盖蓝色。
编辑:这是带有透明线条的图像。
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.
EDIT: Here's the image with transparent lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
简单明了:(
我知道我没有添加任何新内容,但简单的答案应该是可见的)。
Plain and simple:
(I know I add nothing new, but the straightforward answer should be visible).
绘制完所有线条后,我能够将所有线条的透明度设置如下:
编辑:请参阅乔在评论中的回答。
After I plotted all the lines, I was able to set the transparency of all of them as follows:
EDIT: please see Joe's answer in the comments.
这实际上取决于您使用什么函数来绘制线条,但请尝试查看您使用的函数是否采用 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.