标签: python pandas
我想通过添加新列“ count”来合并重复的行
我想要的最终数据框
行可以按任何顺序
答案 0 :(得分:1)
您可以使用:
df["count"] = 1 df = df.groupby(["user_id", "item_id", "total"])["count"].count().reset_index()