使用matplotlib生成折线图
时间: 2023-10-14 22:29:23 浏览: 100
[Matplotlib科学绘图系列]使用Matplotlib绘制折线图
好的,下面是使用matplotlib生成折线图的示例代码:
```python
import matplotlib.pyplot as plt
# x轴数据
x = [1, 2, 3, 4, 5]
# y轴数据
y = [2, 4, 6, 8, 10]
# 生成折线图
plt.plot(x, y)
# 设置x轴标签
plt.xlabel('x')
# 设置y轴标签
plt.ylabel('y')
# 设置图表标题
plt.title('折线图')
# 显示图表
plt.show()
```
这段代码会生成一个简单的折线图,x轴数据为1到5,y轴数据为2到10。你可以根据实际需求修改数据和图表样式。
阅读全文