为了账号安全,请及时绑定邮箱和手机立即绑定

如何将对熊猫数据框进行分组操作后获得的数据结构转换为数据框?

如何将对熊猫数据框进行分组操作后获得的数据结构转换为数据框?

函数式编程 2021-05-14 19:46:16
说我有从示例数据集在这里:import pandas as pdraw_data = {'regiment': ['Nighthawks', 'Nighthawks', 'Nighthawks', 'Nighthawks', 'Dragoons', 'Dragoons', 'Dragoons', 'Dragoons', 'Scouts', 'Scouts', 'Scouts', 'Scouts'],         'company': ['1st', '1st', '2nd', '2nd', '1st', '1st', '2nd', '2nd','1st', '1st', '2nd', '2nd'],         'name': ['Miller', 'Jacobson', 'Ali', 'Milner', 'Cooze', 'Jacon', 'Ryaner', 'Sone', 'Sloan', 'Piger', 'Riani', 'Ali'],         'preTestScore': [4, 24, 31, 2, 3, 4, 24, 31, 2, 3, 2, 3],        'postTestScore': [25, 94, 57, 62, 70, 25, 94, 57, 62, 70, 62, 70]}df = pd.DataFrame(raw_data, columns = ['regiment', 'company', 'name', 'preTestScore', 'postTestScore'])df我想做一个regimentvs的箱线图preTestScore。为此,我需要找出这两个变量的相对分布。所以,我regiment按preTestScore以下方式分组:df1 = df['regiment'].groupby(df['preTestScore']).count()df1preTestScore2     33     34     224    231    2Name: regiment, dtype: int64
查看完整描述

1 回答

?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

使用to_frame该系列转换成数据帧,然后绘制之前重置索引:

df1 = df['regiment'].groupby(df['preTestScore']).count().to_frame().reset_index()
sns.boxplot(x='regiment', y='preTestScore', data=df1)


查看完整回答
反对 回复 2021-05-25
  • 1 回答
  • 0 关注
  • 159 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信