I am using knitr and would like to suppress any kind of verbose output when knitting a file. I know that I can remove the progress bar by
opts_knit$set(progress=FALSE)
Yet, I would like to suppress even the info about the processing file and the output file. Is this somehow possible?
I just added a new argument named quiet
in knit()
the other day, which will suppress the messages about filenames. You can install the latest development version, or wait for knitr
v1.2 which is about 10 days away.
library(knitr)
knit(..., quiet = TRUE)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With