使用python绘制折线图
时间: 2023-09-24 09:13:52 浏览: 93
使用Python画折线图
下面是使用Python绘制折线图的示例代码:
```python
import matplotlib.pyplot as plt
# 准备数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 创建画布和子图
fig, ax = plt.subplots()
# 绘制折线图
ax.plot(x, y)
# 添加标题和标签
ax.set_title("My Line Chart")
ax.set_xlabel("X Axis")
ax.set_ylabel("Y Axis")
# 显示图形
plt.show()
```
运行上述代码,即可得到一张简单的折线图。你可以根据需要修改数据、标题、标签等内容,自定义绘制出更加漂亮的折线图。
阅读全文