# Load necessary libraries
library(ggplot2)
library(wordcloud)
## Loading required package: RColorBrewer
library(tm)
## Loading required package: NLP
## 
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
## 
##     annotate
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(Matrix)

# Load data
blogs <- readLines("en_US.blogs.txt", encoding = "UTF-8")
twitter <- readLines("en_US.twitter.txt", encoding = "UTF-8")
## Warning in readLines("en_US.twitter.txt", encoding = "UTF-8"): line 167155
## appears to contain an embedded nul
## Warning in readLines("en_US.twitter.txt", encoding = "UTF-8"): line 268547
## appears to contain an embedded nul
## Warning in readLines("en_US.twitter.txt", encoding = "UTF-8"): line 1274086
## appears to contain an embedded nul
## Warning in readLines("en_US.twitter.txt", encoding = "UTF-8"): line 1759032
## appears to contain an embedded nul
news <- readLines("en_US.news.txt", encoding = "UTF-8")
## Warning in readLines("en_US.news.txt", encoding = "UTF-8"): incomplete final
## line found on 'en_US.news.txt'
# Sample the data to reduce size
set.seed(123)
blogs_sample <- sample(blogs, 10000)
twitter_sample <- sample(twitter, 10000)
news_sample <- sample(news, 10000)

# Combine samples
all_text <- c(blogs_sample, twitter_sample, news_sample)

# Create a corpus
corpus <- Corpus(VectorSource(all_text))
corpus <- tm_map(corpus, content_transformer(tolower))
## Warning in tm_map.SimpleCorpus(corpus, content_transformer(tolower)):
## transformation drops documents
corpus <- tm_map(corpus, removePunctuation)
## Warning in tm_map.SimpleCorpus(corpus, removePunctuation): transformation drops
## documents
corpus <- tm_map(corpus, removeNumbers)
## Warning in tm_map.SimpleCorpus(corpus, removeNumbers): transformation drops
## documents
corpus <- tm_map(corpus, removeWords, stopwords("en"))
## Warning in tm_map.SimpleCorpus(corpus, removeWords, stopwords("en")):
## transformation drops documents
# Create a term-document matrix
dtm <- TermDocumentMatrix(corpus, control = list(wordLengths = c(1, Inf)))

# Calculate word frequencies directly from the sparse matrix
word_freq <- slam::row_sums(dtm)
word_freq_df <- data.frame(word = names(word_freq), freq = word_freq)

# Visualization
wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, min.freq = 50, random.order = FALSE)
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## everything could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## doesnt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## including could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## music could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## children could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## change could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## business could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## started could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## working could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## together could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## able could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## coming could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## several could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## others could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## along could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## maybe could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## month could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thank could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## believe could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## course could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wanted could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## makes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tonight could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## however could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## center could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## post could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## case could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## blog could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## side could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## name could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## number could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## using could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## months could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hours could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## early could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nothing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## almost could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## support could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## local could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fact could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## person could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : pay
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## idea could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## according could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : yes
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## become could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## president could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## friday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## office could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seen could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## please could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weekend could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : cut
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : saw
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## court could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## taking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## soon could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## games could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## talk could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stop could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## women could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## country could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## street could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## half could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## students could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## members could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## government could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## asked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## comes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wait could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## guys could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weeks could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## instead could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## anyone could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## national could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## theres could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## finally could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## playing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## forward could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## black could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## check could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## series could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ready could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## heart could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## books could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## running could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## remember could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## quite could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## word could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## community could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mean could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## summer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sunday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : ask
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stay could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## move could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## former could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## health could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## friend could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## system could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## whole could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## means could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## face could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## power could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## favorite could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## john could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : law
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## party could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mind could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seems could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## special could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## deal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## board could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## behind could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## writing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## amazing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## couple could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## park could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## south could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## following could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bring could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## experience could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hear could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## york could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leave could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wasnt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## else could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reading could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## probably could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sometimes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## monday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## question could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## knew could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## either could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## university could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : san
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gave could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## program could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## given could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## college could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## close could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## information could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## body could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rather could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## words could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## needed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## share could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## late could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## north could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## saturday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## saying could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hand could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## federal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## baby could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## decided could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stuff could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## miss could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mother could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beautiful could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## card could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## level could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## service could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## event could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## front could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## light could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thinking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## available could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## matter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## movie could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## looks could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## needs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## coach could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : red
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## social could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## meeting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## added could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## outside could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wish could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## american could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## easy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : buy
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## among could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## future could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## large could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## isnt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wrong could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## march could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : per
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## important could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## short could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : art
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sweet could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## third could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## turn could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## feeling could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## moment could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## especially could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## across could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## director could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## although could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## history could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## child could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## true could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## watch could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## possible could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tomorrow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## road could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## class could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## process could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## project could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## didn’t could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## online could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thursday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tuesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## report could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## theyre could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## phone could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## players could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## building could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spring could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gone could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## drive could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## parents could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## watching could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## turned could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## schools could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shot could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## points could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reason could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : war
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## woman could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cost could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## officials could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## girls could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## media could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## awesome could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ones could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## obama could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## space could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## town could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## within could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## played could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nearly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## perfect could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## song could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ohio could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## problem could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## single could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## taken could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## conference could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## worth could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gets could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## happened could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lives could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## yearold could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## excited could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## talking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## district could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## enjoy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## green could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## inside could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## issue could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## general could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## department could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## heard could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## known could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : won
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## huge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cool could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## political could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## west could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fall could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## include could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## held could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chance could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tried could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : mom
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pick could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## works could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## energy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## expected could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## recently could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## based could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fans could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lets could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : age
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## goes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lead could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bar
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## death could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## living could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## return could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## earlier could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## issues could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## church could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## example could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wont could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## control could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## video could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wants could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## starting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## became could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cleveland could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## companies could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## whats could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wrote could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## jobs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## recent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## worked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## likely could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wonderful could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## picture could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## strong could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## father could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : son
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wednesday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## happen could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## education could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sorry could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## interesting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dinner could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sense could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## loved could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## human could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## store could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## middle could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## learn could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## create could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## piece could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## louis could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## career could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## challenge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ways could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## budget could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dead could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## table could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## christmas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## feet could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## site could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## birthday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## understand could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## page could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## simply could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## email could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## door could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## perhaps could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## daughter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## longer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## services could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## brown could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## decision could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## jersey could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## washington could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spend could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## guess could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : boy
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## havent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## billion could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : hey
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## yeah could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hour could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hands could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## plans could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## couldnt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sales could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : …
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## major could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## main could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## blue could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## east could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## written could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## brought could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## race could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## round could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hair could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## action could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## walk could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sleep could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : box
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## began could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## finished could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## paper could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## total could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## continue could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## teams could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## usually could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## definitely could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## takes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## whose could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## offer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bank could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## united could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## price could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## questions could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## financial could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seeing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## forget could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## received could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chief could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dark could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## david could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bed
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## difficult could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## training could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## california could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## boys could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : met
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## entire could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## moving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : ok
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sound could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## private could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seem could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wife could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## security could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## despite could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## economy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gonna could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## yesterday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## medical could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fight could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## increase could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## design could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## member could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shows could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seemed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## amount could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## eyes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seven could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## development could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fine could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : due
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## interest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## current could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## industry could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## record could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : eat
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## exactly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## certain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## jesus could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## simple could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## track could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cause could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## changes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## alone could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : led
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## products could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : cup
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## super could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## website could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## waiting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## america could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## press could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stories could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stand could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## husband could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## campaign could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## knows could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## similar could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## kept could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## james could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## average could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## band could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## problems could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## provide could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ground could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## research could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## student could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## whatever could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## michael could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wall could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fast could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chicago could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## workers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## figure could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hell could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## projects could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hospital could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sports could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## executive could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## calls could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## can’t could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## doesn’t could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spending could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## player could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## goal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## club could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## opportunity could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chris could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## economic could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## vote could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## died could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## completely could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## passed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## complete could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## focus could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## learned could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## runs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## paul could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rock could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## situation could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## higher could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sounds could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : de
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## followed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## heat could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bowl could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## miles could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## note could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## data could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## giving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cases could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## quickly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## deep could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## internet could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wouldnt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## helped could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## personal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## groups could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## senior could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tour could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## certainly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## expect could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## haha could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## learning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beginning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## glad could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beyond could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## texas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## answer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## included could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## straight could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## damn could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## facebook could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## opening could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## release could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## employees could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weather could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lower could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## created could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## blood could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## trust could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sitting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## welcome could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cover could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mine could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## international could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : key
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : low
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## released could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gift could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## type could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## force could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## begin could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## credit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## relationship could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : eye
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## common could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## success could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shop could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## allow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## growing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## color could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## eight could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## league could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stage could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pictures could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## busy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bottom could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## statement could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## moved could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## born could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## send could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## staff could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## message could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## truly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## scene could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seriously could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## places could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## star could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## crazy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sign could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## serious could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## study could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## test could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gives could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## truth could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## june could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## serve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## travel could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## finish could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bought could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## results could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leaving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## changed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chicken could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## various could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pass could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## position could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : die
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## areas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## allowed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leaders could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## voice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## build could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## save could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beat could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## manager could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## beach could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## garden could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## upon could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## walking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## daily could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ability could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## drink could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sugar could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## portland could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## judge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## practice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## safety could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## anyway could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## date could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## throughout could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sort could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## character could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## named could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ahead could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## kitchen could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## involved could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## characters could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## details could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## customers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## oregon could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## river could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## funny could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rules could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## potential could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## football could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : tom
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## paid could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## value could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wonder could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## original could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## extra could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## evening could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## review could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lunch could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## popular could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stopped could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## council could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ideas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## interested could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## attorney could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cold could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## effort could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## speak could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## land could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pieces could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## interview could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## events could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rights could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## performance could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## attention could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## comment could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## annual could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## quarter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : ice
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## biggest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## currently could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## coffee could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## built could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## style could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## view could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dance could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## regular could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## officers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hearing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## winning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## safe could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## costs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## choose could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## clean could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : wow
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## size could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## filled could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : sex
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## residents could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## traffic could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## eating could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## youve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mostly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## angeles could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## consider could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## plus could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## restaurant could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## previous could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## station could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sister could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## killed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## growth could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## culture could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## planning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## floor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ride could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## okay could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lose could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## taste could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : gas
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : fan
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## positive could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sale could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## opened could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## records could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## agency could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## foot could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## photo could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## afternoon could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## asking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : dad
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lovely could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## version could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## missed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## result could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : mix
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## putting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## numbers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## collection could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## onto could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## present could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cute could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leader could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reach could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## property could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## photos could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## caught could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : sun
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## particular could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## choice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## announced could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## society could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reported could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## chocolate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## technology could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dream could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## computer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## account could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wear could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spot could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## letter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## creating could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sell could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## recipe could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## christ could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## items could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cards could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fourth could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## raised could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## missing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## album could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## trade could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## committee could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## term could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## prices could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mayor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## draft could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## eventually could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cancer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## production could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## join could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## healthy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## marriage could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## businesses could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## listen could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rose could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## normal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## throw could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : sat
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## significant could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## starts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## imagine could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## feels could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## charged could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cheese could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## google could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fear could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## library could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## author could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## drop could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## latest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## worst could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## natural could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## apparently could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gold could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fair could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## quick could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## defense could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : sad
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## article could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## closed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## republican could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## association could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## driving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## king could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## link could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tough could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## earth could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## crowd could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cream could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## showed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : dry
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## kill could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## legal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## subject could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## english could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## image could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## doctor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## taxes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## youll could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## glass could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wearing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## justice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## peace could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## catch could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## willing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## easily could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## published could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## loss could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reached could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## toward could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## guard could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hoping could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## policy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## impact could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nature could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## warm could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seat could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## totally could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## remain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tweet could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## enjoyed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## telling could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## individual could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hopefully could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wasn’t could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## period could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## parts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## required could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## search could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leading could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## breakfast could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## leaves could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sold could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## congress could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## corner could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lived could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## smith could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## worry could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## double could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## radio could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## agreed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## baseball could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## meant could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## effect could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## modern could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## quality could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## slow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## neighborhood could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## novel could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## served could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nine could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## unique could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## official could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## francisco could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## valley could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reality could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## address could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## evidence could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stadium could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## text could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## helping could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stores could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## includes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## scored could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## flowers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## officer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## continued could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## teacher could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## touch could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## difference could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mention could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## addition could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## readers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hurt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nights could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## central could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bag
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## january could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## voters could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arrived could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : fat
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## romney could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## december could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lack could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## prison could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## supposed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## access could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## agree could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## teachers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reports could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## plenty could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## none could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## particularly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## watched could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## somewhere could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## grow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## songs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## apple could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## product could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## robert could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## february could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## block could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arizona could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : ass
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## immediately could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## additional could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ended could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## contact could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## homes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## square could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cook could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## treatment could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## considered could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hotel could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## train could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## terms could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cars could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spirit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fashion could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wedding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weight could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lady could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## successful could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## brand could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## benefits could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## absolutely could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## williams could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## option could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## walked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## failed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## secret could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## brain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mike could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## base could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## union could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## married could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## laws could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## poor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hits could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## audience could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## military could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## names could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lucky could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## realized could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## carry could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## finding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fuck could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tickets could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lines could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## french could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## marketing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## yards could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## patients could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## specific could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## advice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## match could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## serving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## slightly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## programs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## count could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## trouble could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## described could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fish could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## indeed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## except could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## speed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## proud could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## response could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## americans could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## violence could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## florida could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## senate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## classes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## designed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stock could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## goals could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## holiday could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pull could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## festival could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## insurance could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## protect could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## administration could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## winner could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : joy
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## broken could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## covered could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## plays could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : tea
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stupid could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spread could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## highly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## realize could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## largest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cake could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## revenue could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : joe
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cash could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## downtown could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## appreciate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## butter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## clearly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## talked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## keeping could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## classic could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## older could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## exciting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## skin could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## adding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## happens could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thomas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## notes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tree could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## drug could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## push could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## artist could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## charges could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## comments could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## aside could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## benefit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## commercial could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cooking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## competition could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## enter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## missouri could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## owner could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## artists could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## families could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## organization could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## folks could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : web
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## management could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## movies could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## losing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## steve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## authority could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## charles could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seasons could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## overall could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## contract could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## george could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gotta could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## countries could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## posts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## picked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## victory could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : pan
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## model could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shown could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## london could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## trees could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pulled could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## november could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## prepared could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pressure could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## meat could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## screen could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nation could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## holding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## degree could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## doctors could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## listening could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## movement could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## income could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fill could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## standing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## investigation could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## session could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ryan could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## election could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## avoid could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mixture could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## majority could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## surgery could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## loves could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## speaking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bus
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## inspired could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## returned could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## limited could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## museum could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## network could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## magazine could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## closer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## direction could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## greater could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## attack could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wind could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## kansas could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thousands could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fighting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## levels could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## liked could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## activity could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## attempt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## knowing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## require could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## writer could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cross could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : etc
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## offered could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bay
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## charge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## risk could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## knowledge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## decide could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## emergency could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## scott could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wild could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## battle could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## boston could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## approach could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shooting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## forest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : gov
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## range could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## soul could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## possibly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tired could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## faith could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ends could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## receive could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## content could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## century could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## moments could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## necessary could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## doubt could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fund could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## orange could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## brings could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## smile could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wanna could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## spokesman could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## camera could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## peter could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## compared could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## soft could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## worse could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## becomes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## noted could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : via
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dress could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## global could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## construction could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## window could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## detroit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## draw could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## tells could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## unless could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## september could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## respect could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## honor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## joined could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## recovery could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## standard could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thoughts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## famous could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## handle could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## opinion could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## appears could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## plant could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## posted could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : dc
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## science could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## options could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## language could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## discovered could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## efforts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## carolina could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## banks could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : bob
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## award could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dear could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## surprised could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## host could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : vs
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : mad
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## forever could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## placed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## agreement could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wood could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## raise could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## western could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## twice could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## heavy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## balance could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## writers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## caused could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## score could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## usual could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## helps could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bridge could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shopping could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## trial could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## diet could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## basketball could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bread could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## easier could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mile could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hopes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## capital could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dollars could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## lately could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mothers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## turning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## physical could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : gay
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## anywhere could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## streets could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## obviously could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## skills could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## request could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## resources could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : pop
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## section could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## excellent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## grand could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dogs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## criminal could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## coast could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## dropped could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stood could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## meaning could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## holy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## foreign could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## likes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hundreds could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## actions could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## offering could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## buying could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## headed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## vehicle could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## theyve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## location could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seeking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## traditional could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## restaurants could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## santa could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## johnson could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## baltimore could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bigger could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : sea
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## offers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## reasons could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## seconds could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mary could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## understanding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## jones could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mentioned could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## features could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## visitors could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## purpose could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## turns could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## provided could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## damage could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## mental could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## concerns could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## powerful could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arms could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## background could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## decades could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sexual could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## female could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## complex could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## menu could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## nobody could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## agent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## candidate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## august could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## blogs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## followers could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## activities could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## considering could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## injury could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## surprise could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## creative could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## magic could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## becoming could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## rule could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## weird could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## apart could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## snow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## smart could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## route could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## foundation could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## army could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## loving could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## crime could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## remains could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## arrested could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## golden could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## parking could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## authorities could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## avenue could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## commission could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## broke could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hill could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## explain could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## source could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## pink could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## grew could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## directly could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## yard could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## professional could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## anymore could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## gotten could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## towards could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## debate could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## crisis could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## italian could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sharing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## eggs could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## uses could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shoes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## everybody could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## decisions could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## craft could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## stuck could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## kevin could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fruit could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## adult could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## contest could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## copy could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## planned could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## funding could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## bringing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## funds could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## japanese could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : inc
## could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## colorado could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## whos could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## increased could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## target could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## claim could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## christian could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## till could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## labor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## thinks could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## transportation could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## democrats could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## measure could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## impossible could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## southern could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## changing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## master could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## singing could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shots could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## region could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## variety could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## europe could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## sites could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## memory could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## alive could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## improve could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## won’t could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## fellow could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## remove could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## candidates could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## related could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## illinois could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## otherwise could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wake could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## falling could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## shoot could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## concept could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## discussion could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## cuts could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## paying could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## colors could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## talent could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## desire could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## calling could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## believes could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## noticed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## managed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## accept could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## favor could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## wide could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## filed could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## newspaper could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## hello could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## task could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## appear could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## solid could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## choices could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## awards could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## democratic could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## setting could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## airport could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, :
## ticket could not be fit on page. It will not be plotted.
## Warning in wordcloud(words = word_freq_df$word, freq = word_freq_df$freq, : fix
## could not be fit on page. It will not be plotted.

# Plot line counts
line_counts <- data.frame(
  File = c("Blogs", "Twitter", "News"),
  Lines = c(length(blogs), length(twitter), length(news))
)
ggplot(line_counts, aes(x = File, y = Lines)) +
  geom_bar(stat = "identity") +
  ggtitle("Line Counts per File")

# Plot file sizes
file_sizes <- data.frame(
  File = c("Blogs", "Twitter", "News"),
  Size_MB = c(200, 159, 196)
)
ggplot(file_sizes, aes(x = File, y = Size_MB)) +
  geom_bar(stat = "identity") +
  ggtitle("File Sizes in MB")

# Plot longest lines
longest_lines <- data.frame(
  File = c("Blogs", "Twitter", "News"),
  Longest_Line = c(max(nchar(blogs)), max(nchar(twitter)), max(nchar(news)))
)
ggplot(longest_lines, aes(x = File, y = Longest_Line)) +
  geom_bar(stat = "identity") +
  ggtitle("Longest Line Length per File")