MWE test.Rmd
档案:
---
title: ""
author: "Alex"
output: html_document
runtime: shiny
---
```{r echo = FALSE, warnings=FALSE}
a <- max()
```
The value of $a$ in the first code chunk is `r a`.
```{r include=FALSE}
a <- max()
```
The value of $a$ in the second code chunk is `r a`.
产地:
第一个警告没有被抑制,但第二个是include=FALSE
。但是,warnings=FALSE
已经努力抑制其他警告,例如包命名空间冲突。
我的包裹是:
knitr_1.12.3
rmarkdown_0.9.6
答案 0 :(得分:3)
您需要使用warning=FALSE
,而不是warnings=FALSE
。太糟糕了,没有一个未被识别的块选项&#34; (meta)警告在这里,但软件只能这么做......(我很惊讶warnings=FALSE
过去曾为你工作过 - 也许这只是一次性错字?)< / p>