I am using python / pandas.
I have a dataframe like this:
     date         id         my_column
0    31.07.20     128909     ['hey', 'hi']
1    31.07.20     128914     ['hi']
3    31.07.20     853124     ['hi', 'hello', 'hey']
4    30.07.20     123456     ['hey']
...
The dataframe over 1.000.000 rows long. I want the top 10 most common words in the my_column column.
Appreciate any help.
 
    