PHP前端开发

pandas groupby 分组取每组的前几行记录方法

百变鹏仔 2个月前 (02-07) #Python
文章标签 每组

下面为大家分享一篇pandas groupby 分组取每组的前几行记录方法,具有很好的参考价值,希望对大家有所帮助。一起过来看看吧

直接上例子。

import pandas as pd df = pd.DataFrame({'class':['a','a','b','b','a','a','b','c','c'],'score':[3,5,6,7,8,9,10,11,14]})

df:


classscore
0a3
1a5
2b6
3b7
4a8
5a9
6b10
7c11
8c14
df.sort_values(['class','score'],ascending=[1,0],inplace=True) grouped = df.groupby(['class']).head(2)

grouped:


classscore
5a9
4a8
6b10
3b7
8c14
7c11