Valentine’s Day Word Cloud using Oracle’s Distribution of R

Brandon JonesBig Data & BI, Oracle, Technical TipsLeave a Comment

Red Rose

We hope you had a great Valentine’s Weekend! Whether you did or not, we knew people on twitter were talking about the big day so we thought we’d do some analysis. Check out how we made this word cloud using Oracle’s Distribution of R to pull Valentine’s Day tweets from Twitter. Once you have Oracle’s Distribution of R running, you must first install the necessary packages. > install.packages(c(“devtools”, “rjson”, “bit64”, “httr”))> install.packages(c(“devtools”, “rjson”, “bit64”, “httr”)) > install_github("twitteR", username="geoffjentry")> install_github("twitteR", username="geoffjentry") Then, you must load the correct libraries. > library(devtools) > library(tm) > library(wordcloud) > library(twitteR)> library(devtools) > library(tm) > library(wordcloud) > … Read More