如何在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)
```
您认为这段代码有什么问题?