Skip to content

Instantly share code, notes, and snippets.

@julia-git
Created September 5, 2018 21:59
Show Gist options
  • Save julia-git/535d7b49dcd27b1916d7043d6308bfbe to your computer and use it in GitHub Desktop.
Save julia-git/535d7b49dcd27b1916d7043d6308bfbe to your computer and use it in GitHub Desktop.
word_cloud_function
def generate_wordcloud(words, mask):
word_cloud = WordCloud(width = 512, height = 512, background_color='white', stopwords=STOPWORDS, mask=mask).generate(words)
plt.figure(figsize=(10,8),facecolor = 'white', edgecolor='blue')
plt.imshow(word_cloud)
plt.axis('off')
plt.tight_layout(pad=0)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment