Guest User

Untitled

a guest
Jan 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. tweets_list = pd.Series([t for t in tweet_table.tweet]).str.cat(sep=' ')
  2. wordcloud = WordCloud(width=1600, height=800,max_font_size=200).generate(tweets_list)
  3. plt.figure(figsize=(12,10))
  4. plt.imshow(wordcloud, interpolation="bilinear")
  5. plt.axis("off")
  6. plt.show()
Add Comment
Please, Sign In to add comment