I have a dataframe column that has the occasional tuple inserted into it. I would like to join all of these tuples into one string separated by ','.
EX
Data People
A XYZ
B ABX,LMN
C ('OPP', 'GGG')
D OAR
I am only trying to 'target' the tuple here and convert it to a string giving the following dataframe:
Data People
A XYZ
B ABX,LMN
C OPP,GGG
D OAR
df['People'] = df['People'].apply(','.join)
I tried this, but it ends up inserting commas in between every character in all of the 'OK' strings.