pandas分组对比柱状图

先说下思路

import pandas as pd
import matplotlib.pyplot as plt

students = pd.read_excel('D:/Pandas/Various.xlsx')
# 按照number排序然后从大到小排序
students.sort_values(by='Number2', inplace=True, ascending=False)
# 一个横坐标一个纵坐标,还有颜色设置柱状图颜色
students.plot.bar(x='Field' ,y=['Number1','Number2'], color=['grey','orange'])
# rotation的值只有horizontal,和vertical,90是不行的,就是一个纵排一个横排
ax = plt.gca()
ax.set_xticklabels(students['Field'],rotation=45,ha = 'right')
# 设置横坐标纵坐标标题
plt.xlabel('Filed',fontweight ='bold')
plt.ylabel('Number',fontweight ='bold')
plt.title('International Students by Field',fontsize= '16',fontweight ='bold')
# 设置图表移动
f = plt.gcf()
f.subplots_adjust(left=0.2,bottom=0.42)
plt.show()

结果
在这里插入图片描述
代码时候不明白
set_xticklabels和subplots_adjust不能关联出来。这么长还不能关联

原文地址:https://blog.csdn.net/zhangyysp/article/details/127651748

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_44406.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注