Answers for "dataframe remove duplicate rows inplace"

7

python: remove duplicate in a specific column

df = df.drop_duplicates(subset=['Column1', 'Column2'], keep='first')
Posted by: Guest on July-22-2020
1

remove duplicate columns python dataframe

df = df.loc[:,~df.columns.duplicated()]
Posted by: Guest on May-28-2020
0

remove duplicate values in data frame r

df <- df %>% distinct()
Posted by: Guest on February-27-2021

Code answers related to "dataframe remove duplicate rows inplace"

Python Answers by Framework

Browse Popular Code Answers by Language