I have a dataframe with different comments that were made and their characteristics. I have a column which is called "Free Text"
Basically, it contains for each comment the text corresponding to it.
Each of the rows contains a string, how can I paste all those strings together to get one single string?
I tried
data['text'].str.cat(sep=', ')
But I get TypeError: list indices must be integers, not str