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