-
-
Save amankharwal/57a3b1f2db11abbd7abe659c2786e093 to your computer and use it in GitHub Desktop.
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
l = ["Aman Kharwal", "Sapna"] | |
for i in range(len(l)): | |
dummy_df = messages_df[messages_df['Author'] == l[i]] | |
text = " ".join(review for review in dummy_df.Message) | |
stopwords = set(STOPWORDS) | |
#Generate a word cloud image | |
print('Author name',l[i]) | |
wordcloud = WordCloud(stopwords=stopwords, background_color="white").generate(text) | |
#Display the generated image | |
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