阅读量:0
要用matplotlib画折线图,可以按照以下步骤进行操作:
- 导入所需的库和模块:
import matplotlib.pyplot as plt
- 准备数据:
x = [1, 2, 3, 4, 5] # x轴数据 y = [5, 7, 3, 8, 4] # y轴数据
- 创建绘图窗口:
plt.figure()
- 绘制折线图:
plt.plot(x, y)
- 添加标题、x轴标签和y轴标签:
plt.title('折线图') # 标题 plt.xlabel('x轴') # x轴标签 plt.ylabel('y轴') # y轴标签
- 显示图形:
plt.show()
综合起来,完整的代码如下所示:
import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] # x轴数据 y = [5, 7, 3, 8, 4] # y轴数据 plt.figure() plt.plot(x, y) plt.title('折线图') # 标题 plt.xlabel('x轴') # x轴标签 plt.ylabel('y轴') # y轴标签 plt.show()
运行代码,就可以生成一个简单的折线图。