当在r中传递figPath参数时,Webshot()不使用wordcloud2()。

时间:2016-12-11 11:08:44

标签: r text-mining word-cloud

我正在使用webshot保存wordcloud2创建的html小部件,但每当我将png文件传递给figPath时,我都会得到一张空白图片。如果我打开.html文件但是webshot创建的png是空白的,我可以看到wordcloud。当figPath = NULL时,它工作正常。我无法弄清楚为什么会这样。

这是我的代码:

library(wordcloud2)
library(RColorBrewer)

File <- "image.png"
library(webshot)
library(htmlwidgets)


graph <- wordcloud2(freqdf, size=clsize, color =clcolor, backgroundColor =clbgcolor,
                  figPath = clfigpath) 

saveWidget(graph,"tmp.html",selfcontained = FALSE)
webshot("tmp.html",File, delay = 20)

1 个答案:

答案 0 :(得分:0)

我的理解是FigPath是图像蒙版的路径。你应该尝试这样的事情:

    wordcloud2(freqdf, size=clsize, color =clcolor, backgroundColor =clbgcolor, figPath = "image.png")

此外,包装创建者知道的已知错误。要解决此问题,您需要刷新查看器或在浏览器中打开它。有关包创建者的解释,请参阅此github issue

希望这有帮助。