1
我將一個數據集中的不同值連接到Pandas Dataframe中的一列中,但是存在大量重複,如何在不刪除任何行的情況下襬脫它們? : 例如:如何在Pandas DataFrame中使用apply.join時獲得不同的值
newCol
------
123,456,129,123,123
237,438,365,432,438
使用df.newCol.drop_duplicates()刪除整個行,但我希望得到的結果是:
newCol
------
123,456,129
237,438,365,432
...
謝謝
謝謝你的解決方案,我忘了提及數據是整數和字符串的組合,當我使用你的解決方案時,我得到這個錯誤:「AttributeError:'float'object has no attribute'split'」 ...請原諒我的基本問題我是新來的python – faranak777
請檢查編輯的nswer。 – jezrael
現在我得到這個錯誤:AttributeError:'str'對象沒有屬性'astype' – faranak777