python中画折线图不同颜色的两段_matplotlib绘制精美的折线图——另附颜色、形状查找表...
时间: 2023-11-12 11:07:38 浏览: 61
python使用matplotlib绘制折线图教程
5星 · 资源好评率100%
要画不同颜色的两段折线图,可以使用 matplotlib 中的多个 plot 函数来实现。具体步骤如下:
1. 导入 matplotlib 库和数据:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y1 = [3, 5, 2, 7, 8, 3, 6, 9, 1, 4]
y2 = [5, 4, 6, 1, 2, 7, 4, 8, 2, 6]
```
2. 使用 plot 函数画出第一段折线,设置颜色为蓝色:
```python
plt.plot(x[:5], y1[:5], color='blue')
```
3. 使用 plot 函数画出第二段折线,设置颜色为红色:
```python
plt.plot(x[4:], y1[4:], color='red')
```
4. 使用 plot 函数画出第三段折线,设置颜色为绿色:
```python
plt.plot(x[:5], y2[:5], color='green')
```
5. 使用 plot 函数画出第四段折线,设置颜色为橙色:
```python
plt.plot(x[4:], y2[4:], color='orange')
```
6. 添加标题和图例,并显示图像:
```python
plt.title('Two Lines with Different Colors')
plt.legend(['Line 1', 'Line 2'])
plt.show()
```
完整代码如下:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y1 = [3, 5, 2, 7, 8, 3, 6, 9, 1, 4]
y2 = [5, 4, 6, 1, 2, 7, 4, 8, 2, 6]
plt.plot(x[:5], y1[:5], color='blue')
plt.plot(x[4:], y1[4:], color='red')
plt.plot(x[:5], y2[:5], color='green')
plt.plot(x[4:], y2[4:], color='orange')
plt.title('Two Lines with Different Colors')
plt.legend(['Line 1', 'Line 2'])
plt.show()
```
结果如下图所示:
![image.png](attachment:image.png)
同时,如果需要更多颜色或形状的选择,可以参考下面的颜色和形状查找表:
```python
colors = ['b', 'g', 'r', 'c', 'm', 'y', 'k', 'w']
markers = ['.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4', 's', 'p', '*', 'h', 'H', '+', 'x', 'D', 'd', '|', '_']
```
其中,colors 列表中包含了常用的颜色,markers 列表中包含了常用的形状。在 plot 函数中,可以通过设置 color 和 marker 参数来选择颜色和形状。例如:
```python
plt.plot(x, y, color='r', marker='o')
```
上述代码将画出红色的圆点形状折线。
阅读全文