Skip to content

Instantly share code, notes, and snippets.

@focaalvarez
Last active July 11, 2019 12:12
Show Gist options
  • Save focaalvarez/6b07b48b1cf8853e6af84b6211eb01b1 to your computer and use it in GitHub Desktop.
Save focaalvarez/6b07b48b1cf8853e6af84b6211eb01b1 to your computer and use it in GitHub Desktop.
#create word cloud
wordcloud = WordCloud(max_words=150, background_color="white",stopwords=stopwords,normalize_plurals=False).generate(text)
plt.figure(dpi=500)
plt.imshow(wordcloud, interpolation="bicubic")
plt.axis("off")
plt.show()
wordcloud.to_file("pub_wordcloud.png")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment