python 绘制多条折线图
时间: 2023-09-23 11:10:01 浏览: 216
【Python实战应用案例代码】-日期型折线图绘制.zip
5星 · 资源好评率100%
可以使用 Matplotlib 库来绘制多条折线图。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y1 = [1, 4, 9, 16, 25]
y2 = [1, 8, 27, 64, 125]
y3 = [1, 2, 4, 8, 16]
# 绘制折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
plt.plot(x, y3, label='Line 3')
# 添加图例
plt.legend()
# 添加标题和标签
plt.title('Multiple Line Chart')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 显示图形
plt.show()
```
运行后会显示一个包含三条折线图的图形。可以根据需要修改数据和样式。
阅读全文