Answers for "python how to remove duplicate key in dataframe"

11

remove duplicate row in df

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

remove duplicates based on two columns in dataframe

df.drop_duplicates(['A','B'],keep= 'last')
Posted by: Guest on August-13-2020

Code answers related to "python how to remove duplicate key in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language