R语言绘图:词云图

Posted 嘻呵呵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言绘图:词云图相关的知识,希望对你有一定的参考价值。

使用wordcloud2绘制词云图

library(wordcloud2)
findwords<-function(tf){
        txt<-scan(tf,"")
        wl<-list()
        for(i in 1:length(txt)){
                wrd<-txt[i]
                wl[[wrd]]<-c(wl[[wrd]],i)
        }
        return(wl)
}
words<-findwords("testconcorda.txt")
wordfreq<-function(wrf){
        for(i in 1:length(wrf)){
                wrf[[i]]<-length(wrf[[i]])
        }
return(wrf)
}
wrf<-wordfreq(words)
data<-function(dt){
        word<-names(dt)
        count<-c()
        for(i in 1:length(dt)){
                count[i]<-dt[[i]]
        }
        wordcloud<-data.frame(word,count)
        return(wordcloud)
}
data1<-data(wrf)
wordcloud2(data1,color="random-light",backgroundColor = "grey")

以上是关于R语言绘图:词云图的主要内容,如果未能解决你的问题,请参考以下文章

R语言画词云图——建模常用软件

R语言 | 制作词云图

R语言与医学统计图形-32海盗图词云图日历图

R语言实战-云图

python--词云图

python中实现词云图