I have the dataframe like this
Col1 Col2
['joe', 'joe'] ['joe']
['sam','bob'] ['sam'.'bob']
['mary','mary'] ['mary']
I want to use an apply function on Col1 to get my result in Col2. Meaning, I want my lists with the duplicates in Col1 to no longer have those duplicates in Col2. Tried various functions with an applying and set, no dice. Seems like it should be straightforward.