python画双折线图
时间: 2023-08-27 19:10:13 浏览: 272
使用Python画折线图
您可以使用Python的matplotlib库来绘制双折线图。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y1 = [10, 15, 7, 12, 9]
y2 = [8, 12, 9, 14, 10]
# 创建图形和轴对象
fig, ax = plt.subplots()
# 绘制折线图
ax.plot(x, y1, label='Line 1', color='blue')
ax.plot(x, y2, label='Line 2', color='red')
# 添加标题和标签
ax.set_title('Double Line Chart')
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')
# 添加图例
ax.legend()
# 显示图形
plt.show()
```
在这个例子中,我们创建了两个数据系列 `y1` 和 `y2`,并使用 `plot` 函数绘制了两条折线。通过设置不同的颜色和添加图例,我们可以区分两条线。最后,通过调用 `show` 函数显示图形。
您可以根据需要修改数据和样式来绘制自己的双折线图。希望对您有帮助!
阅读全文