Suppressing messages in Knitr / Rmarkdown

后端 未结 3 1737
执念已碎
执念已碎 2020-12-14 07:47

Here is the code for my RMarkdown file:

```{r echo=FALSE, message=FALSE}
opts_chunk$set(comment = NA, echo=FALSE, message = FALSE, warnings = FALSE)
options(         


        
3条回答
  •  甜味超标
    2020-12-14 08:26

    Ran into this problem as well, I would like to add that it should be warning = FALSE, not warnings = FALSE

提交回复
热议问题