Guest User

Untitled

a guest
Jun 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. wordcloud = WordCloud(background_color='white', mode = "RGB", width = 2000, height=1000).generate(str(postings['name']))
  2. plt.title("Craigslist Used Items Word Cloud")
  3. plt.imshow(wordcloud)
  4. plt.axis("off")
  5. plt.show();
Add Comment
Please, Sign In to add comment