When I purl/tangle a document to extract the R chunks into a script, is there any way to:
Since knitr 1.3, there is a new chunk option purl = TRUE/FALSE that allows one to include/exclude certain code chunks for purl().
purl = TRUE/FALSE
purl()
```{r test, purl=FALSE} library(MASS) ```