r程序从表创建wordcloud

时间:2015-11-07 07:01:22

标签: r

我正在尝试使用只有1列的数据框表找到wordcloud。这就像

           USE
     1     sfd 
     2     sfd
     3     Sfd-Detached                          
     4     Sfd-Detached
     5     Sfd-Detached

我用过

wordcloud(rownames(clean), min.freq=0)  
wordcloud(colnames(clean), min.freq=0)

然而,当我使用colname时,当我使用rownames和我的列名时,wordcloud产生了行号。有没有办法用我的专栏中的实际内容生成wordcloud?

1 个答案:

答案 0 :(得分:0)

我认为您应该引用data.frame的特定wordcloud列,而不指定freq参数。请参阅?wordcloud

wordcloud(clean$USE, min.freq=0)