Librerís WordCloud

library(NLP)
## Warning: package 'NLP' was built under R version 3.3.2
library(tm)
library(wordcloud)
## Loading required package: RColorBrewer
library(RColorBrewer)

Texto_Fenix <- data.frame("Soy hincha de Fenix, y es un sufrimiento. Voy a la cancha y me las quiero cortar. Pero amo a Fenix, salimos campeones de la liguilla, una copa que no existe más!!! Fenix, Fenix")

Texto <- DataframeSource(Texto_Fenix)
Texto
## $encoding
## [1] ""
## 
## $length
## [1] 1
## 
## $position
## [1] 0
## 
## $reader
## function (elem, language, id) 
## {
##     if (!is.null(elem$uri)) 
##         id <- basename(elem$uri)
##     PlainTextDocument(elem$content, id = id, language = language)
## }
## <environment: namespace:tm>
## 
## $content
##   X.Soy.hincha.de.Fenix..y.es.un.sufrimiento..Voy.a.la.cancha.y.me.las.quiero.cortar..Pero.amo.a.Fenix..salimos.campeones.de.la.liguilla..una.copa.que.no.existe.más....Fenix..Fenix.
## 1    Soy hincha de Fenix, y es un sufrimiento. Voy a la cancha y me las quiero cortar. Pero amo a Fenix, salimos campeones de la liguilla, una copa que no existe más!!! Fenix, Fenix
## 
## attr(,"class")
## [1] "DataframeSource" "SimpleSource"    "Source"
corp <- Corpus(Texto)
corp <- tm_map(corp,removePunctuation)
corp <- tm_map(corp,tolower)
corp <- tm_map(corp,removeNumbers)
corp <- tm_map(corp, removeWords, stopwords("spanish"))
corp <- tm_map(corp, PlainTextDocument)

matriz.terminos <- TermDocumentMatrix(corp)
matriz.terminos <- as.matrix(matriz.terminos)
matriz.terminos
##              Docs
## Terms         character(0)
##   amo                    1
##   campeones              1
##   cancha                 1
##   copa                   1
##   cortar                 1
##   existe                 1
##   fenix                  4
##   hincha                 1
##   liguilla               1
##   quiero                 1
##   salimos                1
##   sufrimiento            1
##   voy                    1
vector.terminos <- sort(rowSums(matriz.terminos),decreasing=TRUE)
vector.terminos
##       fenix         amo   campeones      cancha        copa      cortar 
##           4           1           1           1           1           1 
##      existe      hincha    liguilla      quiero     salimos sufrimiento 
##           1           1           1           1           1           1 
##         voy 
##           1
dataframe.terminos <- data.frame(word = names(vector.terminos),freq=vector.terminos)
dataframe.terminos
##                    word freq
## fenix             fenix    4
## amo                 amo    1
## campeones     campeones    1
## cancha           cancha    1
## copa               copa    1
## cortar           cortar    1
## existe           existe    1
## hincha           hincha    1
## liguilla       liguilla    1
## quiero           quiero    1
## salimos         salimos    1
## sufrimiento sufrimiento    1
## voy                 voy    1
wordcloud(dataframe.terminos$word,dataframe.terminos$freq, scale=c(4,.2),min.freq=1, max.words=Inf, random.order=FALSE, rot.per=.15, colors=brewer.pal(8,"Dark2"))

Ejemplo real con estudio de ANTEL

setwd("C:/Users/Acer/Desktop/EP_R")
Antel <- suppressWarnings(paste(readLines("Necesidades Antel.txt"), collapse=" "))

tmpText <- data.frame(c(Antel))
ds <- DataframeSource(tmpText)
corp <- Corpus(ds)
corp <- tm_map(corp,removePunctuation)
corp <- tm_map(corp,tolower)
corp <- tm_map(corp,removeNumbers)
corp <- tm_map(corp, removeWords, stopwords("spanish"))
corp <- tm_map(corp, PlainTextDocument)
term.matrix <- TermDocumentMatrix(corp)
term.matrix <- as.matrix(term.matrix)
term.v <- sort(rowSums(term.matrix),decreasing=TRUE)
term.d <- data.frame(word = names(term.v),freq=term.v)

wordcloud(term.d$word,term.d$freq, scale=c(3,.2),min.freq=3, max.words=Inf, random.order=FALSE, rot.per=.15, colors=brewer.pal(8,"Dark2"))

Ejemplo de comparación de varios textos

suppressWarnings(suppressMessages(library(wordcloud)))

Discurso_Mujica_ONU <- suppressWarnings(paste(readLines("Discurso Mujica ONU.txt"), collapse=" "))
Discurso_Mujica_Casa_Blanca <- suppressWarnings(paste(readLines("Discurso Mujica Casa Blanca.txt"), collapse=" "))
Discurso_Despedida <- suppressWarnings(paste(readLines("Discurso Mujica Despedida Mando.txt"), collapse=" "))

tmpText <- data.frame(c(Discurso_Mujica_ONU, Discurso_Mujica_Casa_Blanca, Discurso_Despedida))
ds <- DataframeSource(tmpText)
corp <- Corpus(ds)
corp <- tm_map(corp,removePunctuation)
corp <- tm_map(corp,tolower)
corp <- tm_map(corp,removeNumbers)
corp <- tm_map(corp, removeWords, stopwords("spanish"))
corp <- tm_map(corp, PlainTextDocument)
term.matrix <- TermDocumentMatrix(corp)
term.matrix <- as.matrix(term.matrix)
dim(term.matrix)
## [1] 1373    3
colnames(term.matrix) <- c("Mujica ONU","Mujica Casa Blanca","Mujica Despedida")
head(term.matrix)
##                 Docs
## Terms            Mujica ONU Mujica Casa Blanca Mujica Despedida
##   <U+0093>civilización<U+0094>          1                  0                0
##   <U+0093>querido                0                  0                1
##   <U+0093>reclamables<U+0094>           1                  0                0
##   abandona                0                  0                1
##   abismo                  1                  0                0
##   abolir                  1                  0                0
commonality.cloud(term.matrix,comonality.measure=min,max.words=Inf)

comparison.cloud(term.matrix,max.words=Inf,random.order=FALSE,colors=brewer.pal(8,"Dark2"),scale=c(4,1),title.size = 1.5)
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : calificados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : castellano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mejores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presidente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : supera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conocimiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vivimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : investigación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : seguir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : luchar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : largo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : defender could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : menos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuenta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : forma could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pueblo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : siempre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tiempo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adentro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adolescencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : banderas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cabo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dábamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : daban could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : egoísmo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empezábamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : justo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : niñez could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vinieron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cantidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mientras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : camino could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abrazo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : admirable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agrarias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agricultores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : alemanes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : alemania could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : americanas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : americanos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ángela could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ángeles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aprender could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arreglar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asesinato could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bilingüe could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : buscar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : buscarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : capacidades could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : casa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : casan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cobrando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conocer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conteniente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : continente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : corazónme could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dentro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : distraído could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : durísima could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : eficiencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empresas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estudiantes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fértil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : formó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fortalece could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fumador could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fumar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : grupos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hablando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humildad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : importante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : independencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inglés could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : jubilados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : latinas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lechería could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llenar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : local could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : maíz could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mandando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : masa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : merkel could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mirando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mirarnos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mucha could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mujeres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : muriendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : necesitan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : norteamericano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : obama could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pagan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : participar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pedí could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pedir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pelea could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : perdemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : personas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pertenecemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pienso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pleitos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : poniendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : portugués could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : privados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : producir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : profesores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quisiera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recorrer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : representadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salarios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : seguridad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : señora could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sociales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transmita could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transmitir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : usted could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ustedes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : valores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : zona could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ser could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : poder could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : democracia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : solidaridad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : afirmar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aunque could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : avanzado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enormemente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : generaciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hijos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : instituciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : intereses could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nuevas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : orden could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plata could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : primera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : puedan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reconocimiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sabiduría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vale could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : historia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agua could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fuertes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobiernos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hacerse could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : larga could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : libertad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llevar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : manera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : particularmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pueda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : social could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : venimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : grandes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paz could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : repúblicas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : solo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : van could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acumulación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cargo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : despilfarro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humana could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : planeta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : querer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : millones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : especie could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : posible could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : muchas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : podemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aquel could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : codicia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cultura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : débiles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : economía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fondo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mundiales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recursos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tolerancia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : “querido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abandona could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abrazos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aburrirte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acallaban could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : admirada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adversidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agradecerte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aliento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amortiguador could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aquella could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arrimaran could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arroyitos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atestadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ayudaba could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : baleros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bárbara could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : barrio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bochones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : burocracia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : buscando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cables could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caminábamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cañones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cariño could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : carnes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caseros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : centésimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : chacras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : claridad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comenzábamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comenzó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : compañerismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : confrontación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conscientes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contarte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contigo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : continuaran could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : crecía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : críticas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cualquiera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deambulaba could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : defensa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : definitivamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dejar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desembocó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : después could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : duras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empiezo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enfermar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enteras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enterrados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entrega could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : equipaje could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escrito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escuelitas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : españa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estancamiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estudiantil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : europa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : familiar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : final could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frigorífico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fuerte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gastaría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gigantesco could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gotitas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : grandiosa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gurises could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hicimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hondo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : honor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hoyitos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : huérfana could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humildes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imponente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : infancia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ingreso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : instrumento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : iré could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : irredenta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : jugando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : jugar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : latinoamericanos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : leerlas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : leerlo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lejano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : libertarias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : líneas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : livianos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llegaban could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lleva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : logrado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : luminoso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : maestra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : marchas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : menor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : molinos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : morían could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacían could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : naranjo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : natural could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : negociación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ningún could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nostalgias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nucleo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : obrero could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : orfandad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : padecerlo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pagamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parcito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pasaron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pelotas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pequeña could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pierde could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plazo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plutocracia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pobre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : podido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : podría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ponerme could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : precios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presidencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : proletarios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : protegida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pueblo” could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quedo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quiero could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quilos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rancheras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : razón could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : regalaste could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : remendados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : repartir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reparto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : repensado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : repuesta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : saber could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : seguimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : segunda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sentí could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : señalándote could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sepamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : separara could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : similar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sobrios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : socialismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : socialmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : solares could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : solidario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sólo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sufrimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sufrir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sumía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : supimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : surgir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tararirasÂ… could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tardes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : templados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : terminamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trabajos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trajín could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trapo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : traquetear could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trillábamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trojas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trompos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : valor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vereditas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : verlo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vidas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : volcarlo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : voy could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : zapatillas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : época could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mejor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tener could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : anhelo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aprendiendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cambio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cosa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : diría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dolor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : encontrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enormes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estilo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : existencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : felicidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fin could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : incrustado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : indigencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : iría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llegando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llevamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : madre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : madres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : maracaná could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mayor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : militante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacional could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : necesidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : podíamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : puso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quedando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quehacer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : queridos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reminiscencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : republicanos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rodea could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : seres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : suiza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vivos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acuerdos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : compre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conducción could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : crear could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : embargo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : global could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : globalización could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hombres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mercado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : onu could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prehistoria could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : américa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mundial could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : medio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ayudar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : encima could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entonces could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gran could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : milagro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pocos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sentido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sino could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : superior could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : último could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : utopía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tierra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : toda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : creo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ejemplo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : naturaleza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : todas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acuerdo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amigos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arriba could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : así could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : capaces could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : causa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cómo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : común could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consecuencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deber could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : debería could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desconfianza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dólares could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entender could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : financiero could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobernar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : guerras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : iguales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imposible could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : impotencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inútiles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : latina could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : marcha could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : misma could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : obviamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : peor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pequeño could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : planetaria could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pueblos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : puede could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : selvas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sistema could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sueño could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : útiles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : guerra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nadie could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : casi could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hechos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fuerza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hacia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agenda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : apenas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arrancar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : autonomía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bancos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bien could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bienes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bombita could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : calle could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cambios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : capaz could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : causas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cierto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ciudades could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : claro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comercio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conocemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conquistador could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : constituye could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : construir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consumista could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contrario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : corazón could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : crisis could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuántas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuántos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuba could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuentas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cultural could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : datos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deberían could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : decisiones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : delante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deliberadamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : derroche could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desafío could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desiertos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empezar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empujó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : energía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enfermedades could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entramos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estabilidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : existen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : felices could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : feudales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : financia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fracasa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fronteras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fuente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : futuro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : globales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : globalizada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobierna could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobierno could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hacer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : haciendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : herramienta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humilde could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ilusos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : incapaz could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inteligencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : límites could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llama could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : marketing could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : material could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mayores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mayorías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mentiroso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : militar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : minuto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mira could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mismos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : muchacho could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacionalismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : necesitamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : oprimidos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pasado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pasando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : patria could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : planetarias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : planetario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plantear could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pobres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pobreza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : políticas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : porvenir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : potencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : precisa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pregunta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prendida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : productivo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : promedio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : razonar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sabemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salga could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sentimiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : servicios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : siglo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : siquiera could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sobran could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : soledades could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sueña could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sueños could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tarea could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : términos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : todavía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : toman could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trabajo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transforma could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : triunfo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : única could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vacaciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vengo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vergüenzas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : viejos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vislumbrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : “civilización” could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : “reclamables” could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abolir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abominables could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : absolutos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : abunda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aceleradamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aclaremos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acondicionado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acontecer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : activos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acudan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : acumularon could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adelanto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adiós could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adonde could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : adoptan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aéreas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : áfrica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : agricultura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ahogando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ahorrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aire could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : albergar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : alejados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : algún could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : alguna could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : altura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amargas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amazonia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ambición could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ambiente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amenazas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : americano could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amigo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : amistad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : anda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : angustia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : anónimas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : anotando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : antivalor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : antropológico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : añorando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : apariencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : apetece could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aplastadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aplastante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aplicarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aproximadamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aquellos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arcaísmos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : archive could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : armas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : arrasamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : artefactos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asamblea could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asegura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asegurado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asegurando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asistir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aspiraramos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : asumo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atavíos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atemperadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atendemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atender could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atlántico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : atrás could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aturdida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aún could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : autocriticarnos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : autoexclusión could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : autos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : avasallante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : aventura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ayer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bajo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : base could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : basta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bastante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bastardos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bendición could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bichito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : biología could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : biológico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : biológicos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bloquean could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bloqueo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bloqueos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bolsillo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bomberos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : bregue could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : británico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : brumoso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : brutal could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : burocratiza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caballos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cabe could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cabezas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cadenas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : café could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caimán could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : calculada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : calentamiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : california could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : calles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cambiado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cambiar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caminadores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : campañas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : capazÂ… could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : capitalismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : característica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : carbono could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cargamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caribe could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : carne could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : caso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : casos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : castigar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cementerios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cemento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cenizas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : central could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cercenando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : chauvinista could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ciclos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ciego could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : científica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : científico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : civilizaciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : clases could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : clasismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : clima could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cobrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : código could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colectiva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colectivizar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colectivo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colmar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colombia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colonialismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : colonizando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : combate could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : combativo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : compañías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : compatriotas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : compra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comprando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comprometerse could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : comprometo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : concentra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : concluir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conducen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conferencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : conocido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consciente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consecuencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consejeros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consenso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consentida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consentidos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consolar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : construyendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : consumismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contemplar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contemporáneas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : continuar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : continuarán could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : continuista could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : contribuido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : convergen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : convivir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : convocar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : corriente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : corrupción could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cortesanismos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : creada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : creadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : crecer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : creció could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : creemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : criatura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cruda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuadriplicó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuajo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuáles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cubre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cubriendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cueros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuestiones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuidar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuidarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cultivamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : culturales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : culturas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuota could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cuotas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : cúspide could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : damos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deambula could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : debe could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deben could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : débil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : debilitamiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : debocada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : décadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : decencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : decimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : decir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : decisionesÂ… could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dedicados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : defiende could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : definiciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : defino could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deforman could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : delegó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : demás could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : demasiado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : den could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deportiva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : depredador could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : derrochamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : derrochando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : derrota could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desafíos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desarraigan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desarrollando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desarrollar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desarrollo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desatar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : descartables could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : descolonización could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : desparramos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : determinadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : determinante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : detritos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : deuda could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : diario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dice could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : diferenciaciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : diferencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : diferentes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : difícil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : digo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dijeron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dilema could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dioses could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : direcciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dirigida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : discrepamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : discutíamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : disidencias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : distancia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : distintos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : domesticar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : dominador could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : duplica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : eclosión could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ecológica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : economías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : económico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : efectos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ejemplos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ejercitar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : eléctrica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : electrónica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : electrónicos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empeña could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empeñarse could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : empiecen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : encuadrarnos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enfrentamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enfrentar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enorme could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enriquecemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enseñanza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entendiendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enterados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entero could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : enterrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entorno could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entrelazada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entretengamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entretenidos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : entretiene could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : envenena could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : equidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : equilibrios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : errores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escala could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escapa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escapará could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escenario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : escudriñar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : esencial could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : especulación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : esperanza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : esquina could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : establecen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : establecer could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estafa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estancados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : estrangula could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : eterna could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : eterno could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : evidente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : excluye could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : exista could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : existe could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : existimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fácil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : factores could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : falta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : familia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fanatismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fanatismos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fauces could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fenomenal could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fértiles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fidelidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : filosofía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : financieras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : flagrantes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : formidable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : foros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fortunas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fotosíntesis could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frágiles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : francamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fraude could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frecuentemente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frentes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frustración could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : frustraciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fuentes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : funcional could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : funcionales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fundamento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : fúnebres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : funestos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : galaxia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : garantía could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : garantías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : garanticen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gastan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gastar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gastarlos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : genética could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : genético could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gigantesca could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : globalizado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobernando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gobernarnos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : granes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : grey could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : grito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : gritos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hábitos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hacemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hacen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : haga could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hazaña could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : herida could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : heridos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hicieron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : historieta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hombrecito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : homenaje could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : horas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : horizonte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : hoteleras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : huella could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : huimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humanas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : humanos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imperio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imperioso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : implantamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : implica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : importantes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : impositivamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imprescindible could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : imprescindibles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : impulsarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : incluyendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inconmensurable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : indigentes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : individual could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : individualismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : individuo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : individuos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : industriales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inequívocamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : influir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inmateriales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inmediatos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : innegociable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : innovando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inocencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : insomnio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : instintiva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : intercambio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : interés could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : interno could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inútil could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inútilmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inventar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inventó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : inviable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : jerárquicas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : jóvenes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : juego could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : junto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : justicia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lanas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : languidece could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lanzas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : largamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lejos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : levantan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : levantar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : liberadora could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : libertaria could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : limitada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : limitante could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llaman could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : llame could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : logran could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lograr could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : logros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : luchando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lucro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : lugar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : magnitud could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : malgastado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : malvinas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : manejar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : manos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mares could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mascar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : masificando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : maternidades could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mayoría could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : médica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : medito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mejorar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mieles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : militares could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : minutos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : miramos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : mirar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : miro could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : misiones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : modo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : monedas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : montó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : motor could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : movilizar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacieron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nació could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nacionales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : naciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : narcotráfico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : naturales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : naturalmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nave could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : necesarios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : necesita could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : negativa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : negociar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : negocio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : neokeynesianismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : niños could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nivel could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nostalgia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : nueva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : obsolescencia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : occidente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ocupa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ocupamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : odio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : oficinas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : oigan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ojos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : olvido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : opinable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : opresora could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : organismos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : organiza could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : organizada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : organizan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : originales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : padre could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : padres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paga could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : países could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : palabra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pampas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : papel could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paradojal could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paradojalmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : paralelamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : páramos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parapetos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parece could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parecen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parecería could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parecerse could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parecidas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : parezca could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : partes could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : partidos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pasarán could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pastillas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pavorosa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pbi could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : penillanura could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pensamiento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pensemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pequeñito could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pequeños could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : permanecemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : permite could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : perpetuarnos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : perpetuarse could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : perpetuemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : personal could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : personalmente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pesar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : piden could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : piedad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : piensen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : plagas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : planetas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : población could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : poéticamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : políticos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pone could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pongo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : porquerías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : portentosamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : portentosas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : posibles could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : precipita could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : precisan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : precursora could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : preparar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presenta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presiona could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presupuesto could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : presupuestos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prevenciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : primeros could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prisionero could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : privada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : privado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : proceso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : procesos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : procrearla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : profundo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : progreso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prohijadas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : promesa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : prometemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : promoción could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : propender could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : propia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : propiedad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : propios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : proteccionistas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : pruebas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : psicología could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : puedo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : puertos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : púrpuras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quedamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quedan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quedó could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quién could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quieren could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quinta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : quiso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ramas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : real could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : realidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recicla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recoge could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recordando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recortar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recrear could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recuerdos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : recurso could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : redituable could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : refugio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : regiones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : registrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reglas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : regodeo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : regresiva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : regulación could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : relaciones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : remendamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : remendando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : remendar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : renunciar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reparten could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : repetir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : representar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : requerirían could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : requiere could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : requiriendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : respectivos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : respetar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : respeten could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : restos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : resulta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : resurgido could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : retener could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : retienen could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : reverberar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : revolucionaria could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rica could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ríos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rumbo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : rutinario could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sacaron could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sacrificado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sacrificios could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : salvar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : secretarias could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sedentarismo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : según could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : seis could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : selva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sembrar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sencillez could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sencillo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : servir could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : significa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : simplemente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sirven could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sobra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sobriedad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : socavan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : socavones could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : socialdemocracia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sociedad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sol could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : soldado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : soldados could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : soledad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : solos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sombra could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : someten could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sostiene could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : suave could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sucia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sucumbió could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : sucumbiremos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : superar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : supere could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : suplantamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : supone could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : supranacionales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : talento could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tallar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tambaleado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tanta could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tarjetas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tasa could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tasajo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : técnico could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tecnología could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tecnologías could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tedio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : templada could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : templo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : terminar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : territorio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tirando could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tobi could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trabajamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transformándonos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transformar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transformarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : transnacionales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : trascendente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : tres could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : triunfado could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : últimos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : único could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : usarla could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : usetire could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : utilizamos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vanguardia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vaya could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vegetales could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vegetan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vegetar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : veinte could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vela could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : velocidad could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vemos could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vendiendo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : venideras could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : ver could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : verdaderamente could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : verdaderas could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : verde could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : veré could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vigilancia could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vio could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : visión could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : viva could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vivan could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vivo could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : volcar could not be fit on page. It will not be plotted.
## Warning in comparison.cloud(term.matrix, max.words = Inf, random.order =
## FALSE, : vuelvo could not be fit on page. It will not be plotted.

#Solo con dos discursos

Discurso_Mujica_Casa_Blanca <- suppressWarnings(paste(readLines("Discurso Mujica Casa Blanca.txt"), collapse=" "))
Discurso_Despedida <- suppressWarnings(paste(readLines("Discurso Mujica Despedida Mando.txt"), collapse=" "))

tmpText <- data.frame(c(Discurso_Mujica_Casa_Blanca, Discurso_Despedida))
ds <- DataframeSource(tmpText)
corp <- Corpus(ds)
corp <- tm_map(corp,removePunctuation)
corp <- tm_map(corp,tolower)
corp <- tm_map(corp,removeNumbers)
corp <- tm_map(corp, removeWords, stopwords("spanish"))
corp <- tm_map(corp, PlainTextDocument)
term.matrix <- TermDocumentMatrix(corp)
term.matrix <- as.matrix(term.matrix)
dim(term.matrix)
## [1] 440   2
colnames(term.matrix) <- c("Mujica Casa Blanca","Mujica Despedida")
head(term.matrix)
##            Docs
## Terms       Mujica Casa Blanca Mujica Despedida
##   <U+0093>querido                   0                1
##   abandona                   0                1
##   abrazo                     1                0
##   abrazos                    0                1
##   aburrirte                  0                1
##   acá                        2                0
commonality.cloud(term.matrix,comonality.measure=min,max.words=Inf)

comparison.cloud(term.matrix,max.words=50,random.order=FALSE,colors=brewer.pal(8,"Dark2"),scale=c(1,1),title.size = 1.5)