如何在groupby之后获取Pandas DataFrame的行号

时间:2018-05-27 10:05:06

标签: python pandas dataframe group-by

    uid  label
0    1     0
2    1     1
7    1     0

我通过uid对DataFrame进行分组以获得上述group。如何获得行号[0,2,7]? 我尝试了group.index().tolist(),但获得了TypeError:'Int64Index' object is not callable

非常感谢!

1 个答案:

答案 0 :(得分:0)

你绝对走在正确的轨道上。只是一个小小的失误。调用' index'之后不应该有括号。 (它是属性而不是方法)。所以试试group.index.tolist()