commonality.cloud(wordcloud)
commonality.cloud()所属R语言包:wordcloud
Plot a commonality cloud
绘制一个共性云
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot a cloud of words shared across documents
绘制一个云之间共享文件的话
用法----------Usage----------
commonality.cloud(term.matrix,comonality.measure=min,max.words=300,...)
参数----------Arguments----------
参数:term.matrix
A term frequency matrix whose rows represent words and whose columns represent documents.
一个术语的频率矩阵,其行代表的话,它的列表示文件。
参数:comonality.measure
A function taking a vector of frequencies for a single term, and returning a common frequency
一个单一的任期的功能向量的频率,并返回一个共同的频率
参数:max.words
Maximum number of words to be plotted. least frequent terms dropped
的最大数目的词语被绘制。最不常用术语下降
参数:...
Additional parameters to be passed to wordcloud.
额外的参数要传递给wordcloud的。
值----------Value----------
nothing
无
实例----------Examples----------
if(require(tm)){
data(SOTU)
corp <- SOTU
corp <- tm_map(corp, removePunctuation)
corp <- tm_map(corp, removePunctuation)
corp <- tm_map(corp, tolower)
corp <- tm_map(corp, removeNumbers)
corp <- tm_map(corp, function(x)removeWords(x,stopwords()))
term.matrix <- TermDocumentMatrix(corp)
term.matrix <- as.matrix(term.matrix)
colnames(term.matrix) <- c("SOTU 2010","SOTU 2011")
comparison.cloud(term.matrix,max.words=300,random.order=FALSE)
commonality.cloud(term.matrix,random.order=FALSE)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|