📜  如何在每组熊猫中选择前 5 名 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:51.377000             🧑  作者: Mango

代码示例1
df.groupby('id').apply(lambda x : x.sort_values(by = 'value', ascending = False).head(2).reset_index(drop = True))

#Alter native

df.groupby(['id']).apply(lambda x: x.nlargest(topk,['value'])).reset_index(drop=True)