Created
May 16, 2021 07:01
Show worcloud from corpus (R)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Función que devuelve wordcloud de un contenido de texto | |
# @param Corpus corpus Example: Corpus(VectorSource(publication)) from Corpus Package | |
wordcloud_corpus <- function(corpus) { | |
# Matriz de términos (Term-Document-Matrix) | |
tdm = TermDocumentMatrix(corpus, control = list(removePunctuation = TRUE, removeNumbers = TRUE, tolower = TRUE)) | |
matrix_tdm = as.matrix(tdm) | |
# Obtenemos las palabras frecuentes de mayor a menor | |
words_freqs = sort(rowSums(matrix_tdm), decreasing=TRUE) | |
# Creamos dataset de palabras frecuentes | |
data_words_freqs = data.frame(word=names(words_freqs), freq=words_freqs) | |
# Mostramos la nube de palabras | |
wordcloud(data_words_freqs$word, data_words_freqs$freq, random.order=FALSE, colors=brewer.pal(8, "Dark2")) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment