Skip to content

Instantly share code, notes, and snippets.

@tommyhuang1
Created February 12, 2017 20:34
Show Gist options
  • Save tommyhuang1/b374cdc9985f0afc237fe96938d30aea to your computer and use it in GitHub Desktop.
Save tommyhuang1/b374cdc9985f0afc237fe96938d30aea to your computer and use it in GitHub Desktop.
Topiramate Word Cloud
n = Topiramate.Review.str.cat(sep=', ')
wordcloud = WordCloud().generate(n)
# Open a plot of the generated image.
plt.imshow(wordcloud)
plt.axis("off");
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment