plt绘制折线图的代码
时间: 2023-07-10 14:39:55 浏览: 83
python使用matplotlib绘制折线图教程
使用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('Example Line Graph')
plt.xlabel('X-Axis')
plt.ylabel('Y-Axis')
# 显示图形
plt.show()
```
在这个例子中,我们先准备了两个列表`x`和`y`作为横坐标和纵坐标的数据。然后使用`plt.plot`函数来绘制折线图。最后添加标题、横纵坐标标签,并使用`plt.show`函数来显示图形。
阅读全文