0
我有一個數據框,我想合併某些行。我現在df
看起來是這樣的:熊貓 - 結合具有類似數據的行
col1 | col2 | col3 | col4 | col5
022 | 5000 | name1 | comedy | tag1
022 | 4250 | name1 | comedy | tag2
512 | 6570 | name2 | drama | tag44
730 | 7640 | name3 | drama | tag 52
730 | 4557 | name3 | drama | tag 53
如果同時COL1和COL3的比賽,我要行結合起來,創造這樣的事情:
col1 | col2 | col3 | col4 | col5
022 | (5000, 4250) | name1 | comedy | (tag1, tag2)
512 | 6570 | name2 | drama | tag44
730 | (7640, 4557) | name3 | drama | (tag 52, tag 53)
df.groupby(["col1", "col3"]).groups
似乎在告訴我哪行有重疊數據,但我很困惑,我該如何組合這些數據並像上面那樣顯示它。