R 警告=FALSE未禁止此警告

R 警告=FALSE未禁止此警告,r,knitr,r-markdown,R,Knitr,R Markdown,MWEtest.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$ i

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`.

您需要使用
warning=FALSE
,而不是
warning=FALSE
。可惜这里没有“无法识别的块选项”(meta-)警告,但软件只能做这么多。。。(我很惊讶,
warnings=FALSE
在过去对您有效-也许这只是一次打字?

您需要使用
warnings=FALSE
,而不是
warnings=FALSE
。可惜这里没有“无法识别的块选项”(meta-)警告,但软件只能做这么多。。。(我很惊讶,
warnings=FALSE
在过去对您有效-也许这只是一个一次性的打字错误?

StackOverflow不赞成(尽管我很欣赏这种情况下的“urgh”);如果此答案令人满意地回答了您的问题,我们鼓励您单击复选标记接受它。StackOverflow不赞成(尽管我很欣赏这种情况下的“urgh”);如果此答案令人满意地回答了您的问题,我们鼓励您单击复选标记接受它。
knitr_1.12.3
rmarkdown_0.9.6