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
非常感谢!
答案 0 :(得分:0)
你绝对走在正确的轨道上。只是一个小小的失误。调用' index'之后不应该有括号。 (它是属性而不是方法)。所以试试group.index.tolist()
。