团队
我知道wordclouds确实很可怕,但是有时候您会收到老板的要求...
我从dfm创建了wordcloud,但是保存输出无效。 我用您的就职示例重新创建了这个问题:
# plot the features (without stopwords) from Obama's inaugural addresses
set.seed(10)
dfmat1 <- dfm(corpus_subset(data_corpus_inaugural, President == "Obama"),
remove = stopwords("english"), remove_punct = TRUE) %>%
dfm_trim(min_termfreq = 3)
# basic wordcloud
textplot_wordcloud(dfmat1)+
ggsave("test.png")
错误:在图像中保存5.66 x 5.73 textplot_wordcloud(dfmat1)+ ggsave(“ test.png”)中的错误: 二进制运算符的非数字参数
进行了一些谷歌搜索,似乎将与该图相关的某些方面作为字符传递给了ggplot,而需要一个数值。
我该如何解决? 谢谢!