Created
June 16, 2018 21:13
-
-
Save MarynaLongnickel/189fcf095f5fbbae11ea8eab562e655b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from operator import itemgetter | |
from collections import Counter | |
flat_list = [i for sublist in filtered_tokens for i in sublist] | |
# Count how many times each word appears | |
count = Counter(flat_list).items() | |
sorted_count = sorted(count, key = itemgetter(1)) | |
sorted_count.reverse() | |
# Select 5000 most frequent words | |
top5000 = [i[0] for i in sorted_count[:5000]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment