我找到了很多页面,但仍然无法找到如何将参数传递给knit()
我想要的是这样的:
knit('my.Rmd','test.html',args='2013')
在my.Rmd
中`r opts_chunk$set(fig.width=17, fig.height=10, warning=FALSE,error=TRUE, echo=FALSE)`
jmeter压力测试结果
========================================================
```{r init,cache=TRUE}
response <- read.csv(file=args[1],header=F)
```
答案 0 :(得分:2)
knit()
使用当前环境,因此它可以在当前环境中使用变量,例如
a='hello knitr'
knit('test.Rmd',output='test.md')
```{r }
a
```
如果你运行test.R
,它将在名为test.md
的输出文件中产生'hello knitr'。