Created
November 30, 2012 18:03
-
-
Save sckott/4177413 to your computer and use it in GitHub Desktop.
wordcloud
This file contains hidden or 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
install.packages("wordcloud") | |
library(wordcloud) | |
wordcloud( | |
"Many years ago the great British explorer George Mallory, who | |
was to die on Mount Everest, was asked why did he want to climb | |
it. He said, \"Because it is there.\" | |
Well, space is there, and we’re going to climb it, and the | |
moon and the planets are there, and new hopes for knowledge | |
and peace are there. And, therefore, as we set sail we ask | |
God’s blessing on the most hazardous and dangerous and greatest | |
adventure on which man has ever embarked.", | |
,random.order=FALSE) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment