python画多个折线图,横坐标为文字,折线图用不同颜色,不同现型表示
时间: 2023-03-27 16:00:21 浏览: 141
Python折线图绘制
可以使用 matplotlib 库来画多个折线图,具体步骤如下:
1. 导入 matplotlib 库和 numpy 库:
```python
import matplotlib.pyplot as plt
import numpy as np
```
2. 准备数据,将横坐标和纵坐标分别存储在两个数组中:
```python
x = np.array(['A', 'B', 'C', 'D', 'E'])
y1 = np.array([1, 3, 2, 4, 5])
y2 = np.array([3, 2, 4, 1, 6])
y3 = np.array([2, 4, 3, 5, 1])
```
3. 使用 plot 函数画折线图,设置不同的颜色和线型:
```python
plt.plot(x, y1, color='red', linestyle='solid', label='Line 1')
plt.plot(x, y2, color='green', linestyle='dashed', label='Line 2')
plt.plot(x, y3, color='blue', linestyle='dashdot', label='Line 3')
```
4. 添加图例和标签:
```python
plt.legend()
plt.xlabel('X Label')
plt.ylabel('Y Label')
```
5. 显示图形:
```python
plt.show()
```
这样就可以画出多个折线图,横坐标为文字,折线图用不同颜色、不同线型表示。
阅读全文