I have a dataset with 2 columns: unique id and comments. I am able to form a word cloud with just the comments but I was hoping I could retain the unique ID per text so I can rejoin it when I visualize the result in Tableau.
Ex.
ID | Text
a1 This is a test comment.
a2 Another test comment.
a3 This is very good
a4 I like this.
The output I was hoping for is:
ID | Words
--
a1 This
a1 is
a1 a
a1 test
a1 comment
a2 Another
a2 test
a2 comment
a3 This
a3 is
a3 very
a3 good.
I hope you get my sample. THank you
J