使用matplotlib库绘制包含两条折线的折线图
时间: 2023-07-11 12:05:08 浏览: 88
绘制折线图
3星 · 编辑精心推荐
好的,以下是使用Matplotlib库绘制包含两条折线的折线图的示例代码:
```python
import matplotlib.pyplot as plt
# 定义数据
x = [1, 2, 3, 4, 5]
y1 = [3, 5, 2, 7, 4]
y2 = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
# 设置横轴和纵轴标签
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 设置标题
plt.title('Two Lines Graph')
# 显示图例
plt.legend()
# 显示图形
plt.show()
```
运行以上代码,可以得到一张包含两条折线的折线图,如下所示:
![image](https://cdn.luogu.com.cn/upload/image_hosting/ns4wdbk7.png)
阅读全文