text wordcloud plotting error

后端 未结 3 1586
遥遥无期
遥遥无期 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 16:03

    You may also try plotting with a larger device, for example

    dev.new(width = 1000, height = 1000, unit = "px")
    wordcloud(...)
    

    see the link for other ways to plot a certain size.

提交回复
热议问题