In my pandas data frame, I have a column where each row of the column is a list with repeated values. For example - A data frame with 3 rows:
df = pd.DataFrame({'Column_1': [[1,2,3,2],[1,1,2],[1,2,3]]})
I want to remove the duplicates. My expected output is something like [[1,2,3],[1,2],[1,2,3]]
. How can I apply a set function to remove the duplicates in each of the lists?
Thanks in advance!