找回密码
 注册
查看: 972|回复: 0

R语言 wordcloud包 commonality.cloud()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 23:01:59 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-24 23:09 , Processed in 0.025304 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表