目录

搜索

输入搜索字词或模块,类或函数名称。

pandas.core.groupby.GroupBy.tail

GroupBy.tail(n=5)[source]

返回每组的后n行

基本上等同于.apply(lambda x: x.tail(n)),除了忽略as_index标志。

例子

>>> df = DataFrame([['a', 1], ['a', 2], ['b', 1], ['b', 2]],
                   columns=['A', 'B'])
>>> df.groupby('A').tail(1)
   A  B
1  a  2
3  b  2
>>> df.groupby('A').head(1)
   A  B
0  a  1
2  b  1
Scroll To Top