Skip to content

Instantly share code, notes, and snippets.

@trengrj
Created November 11, 2015 12:07
Show Gist options
  • Save trengrj/1d2b96e69de7ecf0b3cb to your computer and use it in GitHub Desktop.
Save trengrj/1d2b96e69de7ecf0b3cb to your computer and use it in GitHub Desktop.
library(ggplot2)
library(wordcloud)
p <- ggplot(subset(wf, freq>40), aes(word, freq))
p <- p + geom_bar(stat="identity")
p
wordcloud(names(freq), freq, min.freq=10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment