标签: python matplotlib
嗨,我有一个Excel工作表,其中有两列(“ veh_body”,“ numclaims”),我正在为其创建条形图。我的问题是,当我运行代码时,它包括所有车辆类型,但不包括每种类型的索赔总数。
names = (df1['veh_body']) values = (df1['numclaims']) fig = plt.figure(figsize=(20, 2)) plt.bar(names, values) plt.show()
enter image description here