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
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())
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.
wordcloud2(dm)
might work.
you can install wordcloud2 package and just one