rocketlaunchr / dataframe-go

DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Other
1.19k stars 95 forks source link

How to remove duplicate rows in DataFrame? #57

Open lovemianhuatang opened 3 years ago

lovemianhuatang commented 3 years ago

How to remove duplicate rows in DataFrame? python's pd.drop_duplicates()

pjebs commented 3 years ago

To efficiently do this, each Series will need to maintain some kind of index. Let me have a think about it. Do you know it is achieved in panda?