要用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)
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()
运行代码,就可以生成一个简单的折线图。