I have the following dataframe:
text
1 "abc"
2 "def"
3 "ghi"
4 "jkl"
How can I merge these rows into a dataframe with a single row like the following one?
text
1 "abc, def, ghi, jkl"
Comma separation is not a must but all the values should be in a single row. The values can also be stored in a comma separated list of strings.