Pandas Groupby First - 从原始数据帧中提取索引 [英] Pandas Groupby First - Extract Index from Original Dataframe

查看:41
本文介绍了Pandas Groupby First - 从原始数据帧中提取索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个非常简单的问题.我想获取一个数据框,对某些列执行 groupby,并提取每个组中第一行的索引(在原始数据框中).我该怎么做?

I have a very simple problem. I'd like to take a data frame, perform a groupby on some columns, and extract the index (in the original data frame) of the first row in each group. How do I do this?

我尝试过使用 as_indexgroup_keysreset_index(),但似乎没有任何效果.

I've tried playing with as_index, group_keys, reset_index() and nothing seems to work.

推荐答案

你需要first函数:

x = pd.DataFrame([{'name': 'b1', 'group': 'a'},
                  {'name': 'b2', 'group': 'a'},
                  {'name': 'b3', 'group': 'a'},
                  {'name': 'b4', 'group': 'b'},
                  {'name': 'b5', 'group': 'b'},
                  {'name': 'b6', 'group': 'a'},
                  {'name': 'b7', 'group': 'c'},
                  {'name': 'b8', 'group': 'c'},])
x = x.reset_index() # add the indices as a column
xc = x.groupby('group').first()
print(xc)


       index    name
group               
a          0  b1
b          3  b4
c          6  b7

这篇关于Pandas Groupby First - 从原始数据帧中提取索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆