Jak zdobyć 100 najlepszych słów na Python Data -Frame Colummn
from collections import Counter
Counter(" ".join(df["text"]).split()).most_common(100)
Crowded Cassowary
from collections import Counter
Counter(" ".join(df["text"]).split()).most_common(100)