rmarkdown - 网格布局

时间:2017-06-14 11:47:15

标签: r r-markdown flexdashboard

如何在rmarkdown中设置网格布局?

在下面的.rmd脚本中,我尝试了this flexdashboard example之后的行。但它不起作用:图表/表格在pdf中显示为低于另一个。

段:

---
title: "Row Orientation"
output: pdf_document
orientation: rows
classoption: landscape
---
Row
-------------------------------------
### Chart 1
```{r}
hist(AirPassengers)
```
Row
-------------------------------------
### Chart 2
```{r}
head(mtcars)
```
### Chart 3
```{r}
hist(AirPassengers)
```

您认为这段代码有什么问题?

0 个答案:

没有答案