在Rmarkdown html页面的htmltools :: tagList的元素之间添加新的行距

时间:2018-07-27 16:41:13

标签: html r r-markdown taglist htmltools

我使用htmltools::tagListRmarkdown html页面上显示绘图列表。

比方说,我的地块清单是:

set.seed(1)
plot.list <- lapply(1:3,
                    function(i) plotly::plot_ly(x=paste0(c("a", "b", "c"), ":", i), 
                                                y=paste0(c("d", "e", "f"), ":", i), 
                                                z=matrix(rnorm(9), 3, 3), 
                                                type="heatmap"))

然后我使用以下代码在Rmarkdown中显示它们:

```{r display.plot, warning=FALSE, message=FALSE, echo=FALSE}
htmltools::tagList(plot.list)
```

问题在于它们之间没有新的行距。所以我的问题是如何在它们之间添加新的行距?

0 个答案:

没有答案