折线图python
时间: 2023-06-22 14:22:42 浏览: 93
使用Python画折线图
生成折线图可以使用 Python 的 matplotlib 库。下面是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title("折线图示例")
plt.xlabel("X 轴")
plt.ylabel("Y 轴")
# 显示图像
plt.show()
```
执行以上代码,将会生成一张简单的折线图。
如果你有多个数据集需要绘制,可以在同一个图像中添加多条折线,具体操作可以参考 matplotlib 官方文档。
阅读全文