要用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()
运行代码,就可以生成一个简单的折线图。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 怎么在python中调用字典的键