
Last chance! 50% off unlimited learning
Sale ends in
Plot a word cloud based on the word frequencies in the documents.
plotcloud(corpus, k = NULL, stopwords = "en", ...)
The corpus of documents (a vector of characters) or the vocabulary of the documents (result of function getvocab
).
A categorial variable (vector or factor).
Stopwords, or the language of the documents. NULL if stop words should not be removed.
Other parameters.
plotzipf
, getvocab
, wordcloud
if (FALSE) {
text = loadtext ("http://mattmahoney.net/dc/text8.zip")
plotcloud (text)
vocab = getvocab (text, mincount = 1, lang = NULL, stopwords = "en")
plotcloud (vocab)
}
Run the code above in your browser using DataLab