1.组内排序

AB
a1
b1
c1
b2
c2
a2
b3
a3
c3

转换为如下格式:

AB
a1
a2
a3
b1
b2
b3
c1
c2
c3

代码如下

df_sorted = df.groupby('A',sort=False).apply(lambda x:x.sort_values('B',ascending=True)).reset_index(drop=True)

进行分组之后再取出组内最小的两个数据

df_head_2 = df_sorted.groupedby('A').head(2)

2.