Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 knitr 并且想在编织文件时抑制任何类型的详细输出。我知道我可以通过
opts_knit$set(progress=FALSE)
然而,我什至想抑制有关处理文件和输出文件的信息。这有可能吗?
我刚刚添加了一个在前几天命名的新参数quiet,knit()它将抑制有关文件名的消息。您可以安装最新的开发版本,或者等待knitr大约 10 天后的 v1.2。
quiet
knit()
knitr
library(knitr) knit(..., quiet = TRUE)