This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text = " ".join(review for review in messages_df.Message) | |
print ("There are {} words in all the messages.".format(len(text))) | |
stopwords = set(STOPWORDS) | |
# Generate a word cloud image | |
wordcloud = WordCloud(stopwords=stopwords, background_color="white").generate(text) | |
# Display the generated image: | |
# the matplotlib way: | |
plt.figure( figsize=(10,5)) | |
plt.imshow(wordcloud, interpolation='bilinear') | |
plt.axis("off") | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment