Skip to content

Instantly share code, notes, and snippets.

@flodel
Created April 29, 2012 01:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flodel/2523299 to your computer and use it in GitHub Desktop.
Save flodel/2523299 to your computer and use it in GitHub Desktop.
[R] Create word cloud of most used packages
library(wordcloud)
wordcloud(packages.df$`Package Name`,
packages.df$Users,
max.words = 50,
colors = brewer.pal(9, "Greens")[4:9])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment