I want to check if there is a duplicate record for all the columns in a DataFrame and to drop that record.
I am trying something like this but I am not sure if this is the right approach.
#remove duplicates
repair = repair.drop_duplicates(subset=None,keep="first")