在 R Markdown 中是否有一个代码评估选项,可以将所有代码块组合在一起,然后将所有输出组合在一起?

In R Markdown is there an option for code evaluation that groups all of a code block together and then all of the outputs?

对于输出不止一次的代码块,R Markdown 将代码块与输出分开 例如

```{r}
("one line")
("second line")
```

是否可以在不复制代码块的情况下复制以下输出?

```{r, eval = FALSE}
("one line")
("second line")
```

```{r, echo = FALSE, collapse = TRUE}
("one line")
("second line")
```

您可以在块选项中使用 results = "hold" 参数。

```{r, results = "hold"}
("one line")
("second line")
```