Skip to content

Instantly share code, notes, and snippets.

@Kiwibp
Created June 11, 2018 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kiwibp/2cab95793a7bf55050184e7de8331f2e to your computer and use it in GitHub Desktop.
Save Kiwibp/2cab95793a7bf55050184e7de8331f2e to your computer and use it in GitHub Desktop.
Craigslist Webscraping Project
wordcloud = WordCloud(background_color='white', mode = "RGB", width = 2000, height=1000).generate(str(postings['name']))
plt.title("Craigslist Used Items Word Cloud")
plt.imshow(wordcloud)
plt.axis("off")
plt.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment