如何用matplotlib画折线图
时间: 2023-07-12 13:11:23 浏览: 121
matplotlib绘制简单地折线图
5星 · 资源好评率100%
使用Matplotlib绘制折线图的基本步骤如下:
1. 导入Matplotlib库和Numpy库:
```
import matplotlib.pyplot as plt
import numpy as np
```
2. 准备数据,通常是一个列表或Numpy数组:
```
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
```
3. 使用`plot()`函数绘制折线图:
```
plt.plot(x, y)
```
4. 添加标题、坐标轴标签等元素:
```
plt.title("Line Chart")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
```
5. 显示图像:
```
plt.show()
```
完整的代码示例:
```
import matplotlib.pyplot as plt
import numpy as np
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.title("Line Chart")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.show()
```
执行代码后,会弹出一个窗口显示绘制的折线图。
阅读全文