Python画图,五条线,五种蓝色,从浅蓝到深蓝
时间: 2024-03-04 08:48:10 浏览: 245
在视图中显示五种线条
下面是使用Matplotlib库在Python中画出五条线,从浅蓝到深蓝的代码示例:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成x轴数据
x = np.arange(0, 10, 1)
# 生成颜色值,从浅蓝到深蓝
colors = plt.cm.Blues(np.linspace(0.2, 0.8, 5))
# 生成y轴数据
y1 = np.array([2, 4, 6, 8, 10])
y2 = np.array([1, 3, 5, 7, 9])
y3 = np.array([3, 6, 9, 12, 15])
y4 = np.array([4, 8, 12, 16, 20])
y5 = np.array([5, 10, 15, 20, 25])
# 绘制五条线
plt.plot(x, y1, color=colors[0], label='line1')
plt.plot(x, y2, color=colors[1], label='line2')
plt.plot(x, y3, color=colors[2], label='line3')
plt.plot(x, y4, color=colors[3], label='line4')
plt.plot(x, y5, color=colors[4], label='line5')
# 添加图例和坐标轴标签
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
# 显示图形
plt.show()
```
运行上述代码,即可得到一张五条线,五种蓝色,从浅蓝到深蓝的图形。
阅读全文