I have a csv file with duplicates that are only in the column named "file". I wrote the following line:
df = pd.read_csv(path_to_file, encoding='utf-8', sep=',')
df.drop_duplicates(subset="Fichier",keep='first',inplace=True)
But it doesn't work. I even tried to do it via Excell but it doesn't work either..
Many thanks in advance!!