plt.rcParams['font.family'] = 'SimHei' plt.bar([str(x)+'年' for x in t_year_mount.index],t_year_mount.values) plt.xlabel('年份') plt.ylabel('销量') plt.title('年份销量情况') plt.show()
时间: 2023-09-07 12:11:45 浏览: 96
HPGL.rar_HPGL for plt_PLT_PLT-HPGL_hpgl文件解析_piececrl
这是一段 Python 代码,主要是使用 Matplotlib 绘制了一个柱状图,显示 t_year_mount 中每年的销量情况。其中,plt.rcParams['font.family'] = 'SimHei' 是设置字体,使得中文可以正常显示;plt.bar() 是绘制柱状图的函数,第一个参数是柱子的位置,第二个参数是柱子的高度;plt.xlabel() 和 plt.ylabel() 是设置坐标轴的标签;plt.title() 是设置图表的标题;plt.show() 是显示图表。
阅读全文