我用来在页面htmltools::tagList
中显示绘图列表。Rmarkdown
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)
```
问题是它们之间没有新的行间距。所以我的问题是如何在它们之间添加新的行距?