Skip to content

Instantly share code, notes, and snippets.

@mamonu
Last active April 9, 2020 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mamonu/221f426fb962016d55eb39dc523ea1bc to your computer and use it in GitHub Desktop.
Save mamonu/221f426fb962016d55eb39dc523ea1bc to your computer and use it in GitHub Desktop.
brown corpus word count
import nltk
import string
# nltk.download('brown')
# if nltk hasnt been used before this will download the brown corpus
from nltk.corpus import brown
from collections import Counter
import pandas as pd
words = brown.words()
# all words to lowercase
lcwords = [str(word).lower() for word in words]
# get punctuation out
lcwords = [''.join(c for c in s if c not in string.punctuation) for s in lcwords]
wordcount=Counter(lcwords)
df = pd.DataFrame.from_dict(wordcount, orient='index').reset_index()
df = df.rename(columns={'index':'word', 0:'count'})
df= df.sort_values(by=['count'],ascending=False)
print(df.head(40))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment