python绘制柱形图的方法
本文实例为大家分享了python绘制柱形图的具体代码,供大家参考,具体内容如下
#柱形图 import pandas import numpy import matplotlib from matplotlib import pyplot as plt #导入数据 data_columns=pandas.read_csv("D://Python projects//reference data//6.4//data.csv") #定义中文格式 font={"family":"MicroSoft Yahei", "weight":"bold", "size":12} matplotlib.rc("font",**font) #使用手机品牌作为分组列,月消费作为统计列 result_columns=data_columns.groupby( by=["手机品牌"], as_index=False)["月消费(元)" ].agg({"月总消费":numpy.sum }) #生成一个间隔为1的序列 index=numpy.arange(result_columns.月总消费.size) #绘制纵向柱形图 plt.bar(index,result_columns["月总消费"]) #%matplotlib qt plt.show() #配置颜色 maincolor=(42/256,87/256,141/256,1) plt.bar(index, result_columns["月总消费"]) plt.show() #配置X轴标签 plt.bar(index, result_columns["月总消费"]) plt.xticks(index,result_columns.手机品牌) plt.show() #对数据进行降序排序后展示 result_asd=result_columns.sort_values( by="月总消费", ascending=False) plt.bar(index, result_asd.月总消费, color=maincolor) plt.xticks(index,result_asd.手机品牌) plt.show()
结果为:
#横向柱形图 result_asd=result_columns.sort_values( by="月总消费", ascending=False) plt.barh(index, result_asd.月总消费, color=maincolor) plt.yticks(index,result_asd.手机品牌) plt.show()
结果为:
#计算出交叉表的数据 result=data_columns.pivot_table( values="月消费(元)", index="手机品牌", columns="通信品牌", aggfunc=numpy.sum)
结果为:
#定义三个颜色 index=numpy.arange(len(result)) mincolor=(42/256,87/256,141/256,1/3) midcolor=(42/256,87/256,141/256,2/3) maxcolor=(42/256,87/256,141/256,1) #建立簇状柱形图 plt.bar( index, result["全球通"], color=mincolor, width=1/4) plt.bar( index+1/4, result["动感地带"], color=midcolor, width=1/4) plt.bar( index+1/2, result["神州行"], color=maxcolor, width=1/4) plt.xticks(index+1/3,result.index) #添加图例 plt.legend(["全球通","动感地带","神州行"]) plt.show()
结果为:
#重新排序进行绘制 result=result.sort_values( by="神州行", ascending=False) plt.bar( index, result["全球通"], color=mincolor, width=1/4) plt.bar( index+1/4, result["动感地带"], color=midcolor, width=1/4) plt.bar( index+1/2, result["神州行"], color=maxcolor, width=1/4) plt.xticks(index+1/3,result.index) plt.legend(["全球通","动感地带","神州行"]) plt.show()
结果为:
#绘制堆叠柱形图 result=result.sort_values( by="神州行", ascending=False) plt.bar( index, result["全球通"], color=maxcolor) plt.bar( index, result["动感地带"], bottom=result["全球通"], color=midcolor) plt.bar( index, result["神州行"], bottom=result["全球通"]+result["动感地带"], color=mincolor) plt.xticks(index,result.index) plt.legend(["全球通","动感地带","神州行"]) plt.show()
结果为:
#绘制双向柱形图 plt.barh( index, result["神州行"], color=midcolor) plt.barh( index, -result["动感地带"], color=maxcolor) plt.yticks(index, result.index) plt.legend(["动感地带","神州行"]) plt.show()
结果为:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?