gpt4 book ai didi

python - Matplotlib:曲线重叠时如何防止透明颜色叠加?

转载 作者:行者123 更新时间:2023-12-01 14:37:54 26 4
gpt4 key购买 nike

例如,我们在这里绘制一条透明颜色的线

import numpy as np
import matplotlib.pyplot as plt

a = np.array([1, 2, 3, 4, 5])
b = 2*a
plt.plot(a, b, 'blue', alpha=0.3)
plt.show()

enter image description here

但是我多次绘制同一条线,与自身重叠,因此与自身重叠越多,它变得越暗。
import numpy as np
import matplotlib.pyplot as plt


a = np.array([1, 2, 3, 4, 5])
b = 2*a
for i in range(3):
plt.plot(a, b, 'blue', alpha=0.3)
plt.show()

enter image description here

那么如何防止颜色重叠?

谢谢大家!

更新:为什么我需要这个?

我正在做一个公差分析。这意味着,参数会在很小的范围内改变自己,我将绘制每次变化的曲线。然后我可以找到最坏的情况。

enter image description here

如果我选择纯色但较浅的颜色。它看起来像:

enter image description here

如您所见,使用不透明的颜色我无法观察被其他线覆盖的节点。

更新 2:

enter image description here

最佳答案

单行不会覆盖自身。因此,您可以将多个图连接成一个。

import numpy as np
import matplotlib.pyplot as plt


a = np.array([1, 2, 3, 4, 5])
b = 2*a

A = np.tile(np.append(a,[np.nan]),3)
B = np.tile(np.append(b,[np.nan]),3)

plt.plot(A, B, 'blue', alpha=0.3)
plt.show()

enter image description here

这基本上是这个问题的反面 How can I draw transparent lines where the color becomes stronger when they overlap? ,这种效果是不希望的。

关于python - Matplotlib:曲线重叠时如何防止透明颜色叠加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50930770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com