I have a huge data frame and I am interested in finding the occurrence of all words in a specific column, for example:
Column
Hi my name is Corey!
Hi my name is John
Desired output:
Hi 2
my 2
name 2
is 2
Corey 1
John 1
I also want to exclude special letters like ! in Corey! in this example, also like question marks, periods etc... Any help would be appreciated, thanks!