Created
April 29, 2012 01:54
-
-
Save flodel/2523299 to your computer and use it in GitHub Desktop.
[R] Create word cloud of most used packages
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
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