Create appendix with R-code in rmarkdown/knitr

前端 未结 3 1062
暖寄归人
暖寄归人 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 05:55

    You could use a reference to your initial chunks, but then change the options:

    main text
    
    ```{r blah, echo = FALSE}
    summary(cars)
    ```
    
    appendix
    
    ```{r blah2, ref.label='blah', eval = FALSE}
    ```
    

    Which will give:

提交回复
热议问题