I have a dataframe on this format:
id val
0 294 aa
1 254 bb
2 844 cc
I need the 'val' column to be a list with the string inside, since I need to join the dataframe with another dataframe with this format:
id val
0 294 [aa]
1 254 [bb]
2 844 [cc]
Anyone know how I can accomplish this? It has to be a list, seeing as the other dataframe is the format of our DB, which I want to insert the joined dataframe into.