Skip to content

Instantly share code, notes, and snippets.

@jkw552403
Created August 17, 2018 03:03
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 jkw552403/c35e70987d5a4874f97bf634915eebd1 to your computer and use it in GitHub Desktop.
Save jkw552403/c35e70987d5a4874f97bf634915eebd1 to your computer and use it in GitHub Desktop.
wordcloud #Python #viz
wc = WordCloud(background_color="white", max_words=1000,
stopwords=STOPWORDS,width=1000,height=1000)
wc.generate(texts with space)
plt.imshow(wc)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment