Answers for "get rid f lines in dataframe with duplicate values in a column"

8

remove duplicate row in df

df = df.drop_duplicates()
Posted by: Guest on August-19-2020
0

remove duplicate columns python dataframe

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

Code answers related to "get rid f lines in dataframe with duplicate values in a column"

Python Answers by Framework

Browse Popular Code Answers by Language