如何在RMarkdown

时间:2017-09-07 21:10:20

标签: r r-markdown blogdown

如何确保我的RMarkdown(HTML)文档中出现wordcloud2::wordcloud2()的输出?

它在RStudio中渲染得很好,包括在RMarkdown文档的预览中,但是当我使用blogdown将其上传到我的netlify网站时,它没有显示(请参阅帖子底部的here)。有什么想法吗?

编辑:这是我正在使用的代码。就像我说的,它在RStudio中完美运行,而不是在网站上。

library(tidyRSS)

five38 <- tidyfeed("http://fivethirtyeight.com/all/feed")
library(wordcloud2)

topics <- five38$item_category1 %>% append(five38$item_category2) %>% 
  append(five38$item_category3) %>% 
  append(five38$item_category4) %>% 
  append(five38$item_category5)

Topics <- data_frame(
  words = topics
) %>% 
  filter(!is.na(words)) %>% 
  group_by(words) %>% 
  tally()

wordcloud2(Topics)

1 个答案:

答案 0 :(得分:1)

```{r}
library(htmlwidgets)
install.packages("webshot")
webshot::install_phantomjs()
library(wordcloud2)
hw = wordcloud2(demoFreq,size = 3)
saveWidget(hw,"1.html",selfcontained = F)
webshot::webshot("1.html","1.png",vwidth = 700, vheight = 500, delay =10)
```
![](1.png)
好吧,我找到了解决这个问题的方法,来自wordcloud2的作者。