我正在尝试使用来自cr页面(https://cran.r-project.org/web/packages/wordcloud2/vignettes/wordcloud.html)的wordcloud2创建一个wordcloud,并且我已经使用命令下载了它
install.packages('devtools')
devtools::install_github("lchiffon/wordcloud2")
我有一个数据框most_words
:
> head(most_words)
word n
1 sir 8748
2 time 8100
3 miss 5976
4 hand 5787
5 dear 5486
6 head 5436
> dput(head(most_words))
structure(list(word = c("sir", "time", "miss", "hand", "dear",
"head"), n = c(8748L, 8100L, 5976L, 5787L, 5486L, 5436L)), .Names = c("word",
"n"), row.names = c(NA, 6L), class = "data.frame")
和我桌面上的图片download.png
当我在没有使用图片的情况下运行wordcloud2的命令时,我得到了答案
wordcloud2(head(most_words,100), size = 0.7, shape = 'star')
但是当我尝试将wordcloud放在图片上时,我只得到一个没有错误的空框
wordcloud2(head(most_words,100), figPath="/Users/username/Desktop/download.png" , size = .2, color = "skyblue")
你知道为什么会这样吗? (我怀疑问题出在figpath上,但我没有收到任何错误)
答案 0 :(得分:-1)
尝试重新加载软件包:
library(devtools)
devtools::install_github("lchiffon/wordcloud2")