data = [10, 20, 30, 40, 50] fig, ax = plt.subplots() ax.plot(data) ax.set_title('Sales Trend') ax.set_xlabel('Month') ax.set_ylabel('Sales')
时间: 2024-01-29 13:01:49 浏览: 74
解决matplotlib.pyplot在Jupyter notebook中不显示图像问题
这段代码使用了 Matplotlib 库来绘制一个折线图,其中 data 包含了销售数据,fig 和 ax 是用于绘图的对象。ax.plot(data) 用于将数据 data 绘制成折线图,ax.set_title('Sales Trend') 设置了图表的标题为 'Sales Trend',ax.set_xlabel('Month') 设置了 x 轴的标签为 'Month',ax.set_ylabel('Sales') 设置了 y 轴的标签为 'Sales'。
阅读全文