Conditional `echo` (or eval or include) in rmarkdown chunks

后端 未结 2 981
梦谈多话
梦谈多话 2020-12-09 04:22

I would like to create an Rmarkdown document (pdf or html) that has some chunks \"executed\" conditionally. The particular case I have in mind is that I might want a more v

2条回答
  •  庸人自扰
    2020-12-09 04:27

    opts_chunk$set() is what you are after. Anything "set" will be the default for subsequent chunks (unless overwritten on a chunk-by-chunk basis)

    ```{r setup}
    library(knitr)
    opts_chunk$set(eval = TRUE, include= TRUE)
    ````
    

    You can then alter as you see fit.

提交回复
热议问题