knitr chunk option eval=TRUE, echo=TRUE, include=FALSE
问题 I use RMarkdown and knitr for dynamic report generation. When knitting a document, I would like to have the code from an Rmarkdown chunk included in the knitted document and run the code -- but not show the output. That is, I would like to be able to do what this code suggests: eval=TRUE, echo=TRUE, include=FALSE ... and make knitr run the code ( eval = TRUE ), show the code ( echo = TRUE ), but not show the lengthy output (attempted with include = FALSE ), but my attempts fail. Does such an