text wordcloud plotting error

后端 未结 3 1645
遥遥无期
遥遥无期 2021-02-14 15:20

I have the following code for plotting a word cloud, and am getting the subsequent error.

wordcloud(dm$word, dm$freq, scale=c(8,.2),min.freq=2,
+           m         


        
3条回答
  •  萌比男神i
    2021-02-14 15:55

    Try with smaller scale, for example:

    wordcloud(Election2016Corpus, max.words =100,min.freq=3,scale=c(4,.5), 
               random.order = FALSE,rot.per=.5,vfont=c("sans serif","plain"),colors=palette())
    

提交回复
热议问题