I have a dataframe with more rows and columns but example with one is here:
id values
1 [v1, v2, v1]
How to get unique values from list in pandas column? Desired output in second column v1, v2 I have tried with df['values'].unique() but obviously it's not working.