matplotlib rgb color
时间: 2023-11-15 12:57:45 浏览: 159
显示RGB颜色
Matplotlib中的RGB颜色是通过指定红色,绿色和蓝色的值来创建的。每个颜色值的范围是0到1之间。可以使用以下代码创建RGB颜色:
```
import matplotlib.pyplot as plt
# 创建RGB颜色
r, g, b = 0.2, 0.4, 0.6
rgb_color = (r, g, b)
# 绘制图形
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y, color=rgb_color)
plt.show()
```
在上面的代码中,我们创建了一个RGB颜色,然后将其用作折线图的颜色。
阅读全文