1

我在 r-markdown 中生成单独的块以生成两个词云,但只出现第一个云。我正在使用 wordcloud2 库。

例子:

word <- c("book", "biography", "image")
freq <- c(190, 144, 120)
freq_2018_causa <- data.frame(word, freq)

word <- c("book", "biography", "image")
freq <- c(70, 30, 15)
freq_2017_causa <- data.frame(word, freq)

我在 Markdown 中的代码

{r, echo=FALSE, fig.align = "center"}
library(wordcloud2)
wordcloud2(freq_2018_causa, size = 1, color = "random-light")


{r, echo=FALSE, fig.align = "center"}
library(wordcloud2)
wordcloud2(freq_2017_causa, size = 1, color = "random-light")

而且错误是html中的markdown只生成了一个云。

4

0 回答 0