17
A
回答
28
作爲documented,你可以得到len(dfgroup)
組的數量。
2
df
A B C D
0 foo one 0.075964 2.132502
1 bar one -1.061731 0.025212
2 foo two 0.753592 0.031765
3 bar three 0.379773 0.996792
4 foo two 0.297801 1.059324
5 bar two -1.400107 -0.651873
6 foo one -1.084224 0.243731
7 foo three -3.181693 -0.413512
g = df.groupby(['A', 'B'])
選項1
ngroups
g.ngroups
6
選項2
len
len(g)
6
如果你想找到的每個組的大小,你可以使用dfGroupBy.size
:
g.size()
A B
bar one 1
three 1
two 1
foo one 2
three 1
two 2
dtype: int64
相關問題
- 1. 如何過濾Pandas GroupBy對象並獲取GroupBy對象?
- 2. pandas python中的groupby對象
- 3. 獲取pandas groupby對象以忽略丟失的數據框
- 4. 從Pandas中的GroupBy對象獲取所有密鑰
- 5. 如何獲取Pandas中groupby對象中每個項目的索引?
- 6. 在Pandas中旋轉groupby對象?
- 7. 如何實現pandas groupby對象的聚合函數?
- 8. 如何從pandas中的groupby對象中選擇列?
- 9. 如何從對象中獲取數組的數量
- 10. 如何獲取JSON對象中的數組數量
- 11. 如何將分位數應用於pandas groupby對象?
- 12. pandas中是否有與「.groupby」相對的「取消組合」操作?
- 13. 如何獲取數組對象的鍵?
- 14. 如何獲取對象中嵌套對象的數量?
- 15. 如何獲取對象數組中的匹配對象?
- 16. 如何使用Pandas計算GroupBy對象的滾動平均值?
- 17. 如何從「groupby」對象的「單元格」中獲取值?
- 18. 從對象數組中獲取對象
- 19. 如何獲取數組中的對象屬性數組?
- 20. 如何解析JSON對象以獲取數組中的數組?
- 21. 如何獲取Json對象數組值?
- 22. 如何從JSON對象獲取數組?
- 23. pandas groupby計數率
- 24. 如何獲取JavaScript對象數組中對象數組的長度?
- 25. 如何從特定對象數組中獲取對象?
- 26. 獲取對象的對象數組
- 27. Python - Pandas - Groupby條件組中的列值
- 28. 從對象數組中獲取對象數組的字段值
- 29. 使用groupby pandas python時從數據框中獲取列。
- 30. 如何獲取對象數組內的對象的索引?