Create appendix with R-code in rmarkdown/knitr

前端 未结 3 1071
暖寄归人
暖寄归人 2021-02-04 05:04

Is it possible to get all of the code in a appendix. Say I have two chunks in a document and then some text.

```{r, echo=TRUE}
x <- 4+5
x
```  
Above is X out         


        
3条回答
  •  礼貌的吻别
    2021-02-04 06:05

    Another possibility:

    ### Appendix 
    ```{r, ref.label=knitr::all_labels(),echo=TRUE,eval=FALSE}
    ```
    

    as suggested by Yihui's nice example

提交回复
热议问题