使用RStudio版本0.98.1103我有一个带有一些预先填充的标记的.Rmd文件(下面)。
在RStudio中,我可以点击
针织PDF>针织PDF(Beamer)
生成PDF。我想知道如何在.R文件中执行相同的操作(基本上是自动执行此过程)。
---
title: "Test"
author: "Test"
date: '2015-10-29'
output:
beamer_presentation:
---
## R Markdown
This is an R Markdown presentation.
## Slide with Bullets
- Bullet 1
- Bullet 2
- Bullet 3
## Slide with R Code and Output
```{r}
summary(cars)
```
## Slide with Plot
```{r, echo=FALSE}
plot(cars)
```
答案 0 :(得分:5)
您可以使用render()
包
rmarkdown
rmarkdown::render("your.Rmd")