python绘制多折线图代码
时间: 2023-10-13 15:05:01 浏览: 88
Python折线图绘制
以下是一个使用Matplotlib库绘制多条折线图的Python代码示例:
```python
import matplotlib.pyplot as plt
# 创建x轴和y轴的数据
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 3, 1, 5]
y2 = [5, 1, 3, 2, 4]
y3 = [3, 2, 4, 5, 1]
# 绘制折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
plt.plot(x, y3, label='Line 3')
# 设置图例
plt.legend()
# 设置x轴和y轴的标签
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 设置图形标题
plt.title('Multi-line plot')
# 显示图形
plt.show()
```
这个示例使用了三个不同的y轴数据,分别绘制了三条折线。你可以根据需要修改x轴和y轴数据,以及legend和标题等属性。
阅读全文