Skip to content

Instantly share code, notes, and snippets.

@JeremiahKamama
Created July 9, 2021 06:54
Show Gist options
  • Save JeremiahKamama/302afd615422a689a1dda637a205d7af to your computer and use it in GitHub Desktop.
Save JeremiahKamama/302afd615422a689a1dda637a205d7af to your computer and use it in GitHub Desktop.
plt.figure(figsize = (20,20))
cloud = WordCloud(max_words= 2000, width= 1600,height= 800).generate("".join(imdb[imdb.sentiment == 1].review))
plt.imshow(cloud, interpolation='bilinear')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment