回答編集履歴

1

コードを一部変更

2020/09/24 01:38

投稿

bsdfan
bsdfan

スコア4794

test CHANGED
@@ -40,9 +40,9 @@
40
40
 
41
41
  # 全カラムを使ってgroupbyして、それぞれのグループのインデックスをリストで抽出
42
42
 
43
- output = [list(d.index)
43
+ groups = df_duplicated_all.groupby(list(df_duplicated_all.columns), as_index=False)
44
44
 
45
- for _, d in df_duplicated_all.groupby(list(df_duplicated_all.columns))]
45
+ output = [list(d.index) for _, d in groups]
46
46
 
47
47
 
48
48