使用matplotlib库画折线图 的代码
时间: 2023-11-20 18:14:36 浏览: 156
python使用matplotlib绘制折线图的示例代码
好的,以下是使用matplotlib库画折线图的代码示例:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 1, 3, 5]
plt.plot(x, y)
plt.xlabel('X Label')
plt.ylabel('Y Label')
plt.title('Line Chart')
plt.show()
```
这段代码将会生成一个折线图,数据点分别为 (1,2), (2,4), (3,1), (4,3), (5,5)。其中,`plt.plot()` 函数中的 `x` 和 `y` 分别代表横坐标和纵坐标的数据点。`plt.xlabel()` 和 `plt.ylabel()` 用于设置坐标轴的标签,`plt.title()` 用于设置图表的标题。最后,`plt.show()` 函数用于显示图表。
阅读全文