删除 knitr 在 R markdown 文档中添加的注释
Remove note added by knitr in R markdown document
我在 R
编织了一个 html
文件。输出很好;只是在最后我看到了这个注释:
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot
我怎样才能从 knitted 文档中删除这条注释?
这个没有出现在我的Rmarkdown版本运行下面的测试文档中:
---
title: R Markdown
output: html_document
---
This is an R Markdown document.
```{r}
summary(cars)
```
You can also embed plots:
```{r, echo=FALSE, message=FALSE}
plot(cars)
```
所以我认为有两种可能。
- 您不小心添加了它(可能是通过复制 this template),或者
- 它已在以前的版本中删除,因为最新版本的 Rmarkdown (2.9) 不会产生此警告。
我怀疑是情况 1,因为我以前从未见过自动插入此输出。
我在 R
编织了一个 html
文件。输出很好;只是在最后我看到了这个注释:
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot
我怎样才能从 knitted 文档中删除这条注释?
这个没有出现在我的Rmarkdown版本运行下面的测试文档中:
---
title: R Markdown
output: html_document
---
This is an R Markdown document.
```{r}
summary(cars)
```
You can also embed plots:
```{r, echo=FALSE, message=FALSE}
plot(cars)
```
所以我认为有两种可能。
- 您不小心添加了它(可能是通过复制 this template),或者
- 它已在以前的版本中删除,因为最新版本的 Rmarkdown (2.9) 不会产生此警告。
我怀疑是情况 1,因为我以前从未见过自动插入此输出。