-
-
Save Johnne32/e2c5fefbff7cfe8f528c9d07baec39b3 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
#Using wordcloud to visualize the comments | |
unique_string=(" ").join(comments) | |
wordcloud = WordCloud(width = 2000, height = 1000,background_color='white').generate(unique_string) | |
plt.figure(figsize=(20,12)) | |
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