I'm working with the following list:
["hello, how are you", "hello", "how are you doing","are you ok"]
how could I get the frequencies of every word inside of every element?
All in all the output of the list should look like this:
you: 3
are: 3
hello: 2
how: 2
doing: 1
ok: 1