I have been using Knitr via R-Studio, and think it is pretty neat. I have a minor issue though. When I source a file in an R-Chunk, the knitr output includes external commen
You can use include=FALSE to exclude everything in a chunk.
include=FALSE
```{r include=FALSE} source("C:/Rscripts/source.R") ```
If you only want to suppress messages, use message=FALSE instead:
message=FALSE
```{r message=FALSE} source("C:/Rscripts/source.R") ```