Como obter as 100 principais palavras frequentes em um python dataframe colummn

from collections import Counter
Counter(" ".join(df["text"]).split()).most_common(100)
Crowded Cassowary