Matplotlib 是一个用于绘制图表的 Python 库,它提供了丰富的绘图功能和自定义选项。以下是使用 Matplotlib
绘制图表的基本步骤:
- 导入 Matplotlib 库:
python
import matplotlib.pyplot as plt
- 准备数据:
python
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
- 创建图表对象:
python
fig, ax = plt.subplots()
- 绘制图表:
python
ax.plot(x, y)
- 设置图表标题、坐标轴标签等属性:
python
ax.set_title('My Plot')
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
- 显示图表:
python
plt.show()
完整的代码示例:
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 Plot')
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
plt.show()
这将创建一个包含一条折线图的窗口,其中 x 轴表示数字 1 到 5,y 轴表示数字 2 到 10。