gpt4 book ai didi

r - 在 flexdashboard 中显示代码

转载 作者:行者123 更新时间:2023-12-01 22:17:46 25 4
gpt4 key购买 nike

我正在尝试使用 R 生成一个 flexdashboard,并希望在我的演示文稿中显示代码,但这似乎行不通。这里有一个小例子:

---
title: "Test"
output:
flexdashboard::flex_dashboard
---

```{r setup, include=FALSE}
library(flexdashboard)
```

### Code

```{r, eval=FALSE, include=TRUE}
plot(iris$Sepal.Length, iris$Sepal.Width)
```

### Output

```{r, fig.align='center', echo = FALSE}
plot(iris$Sepal.Length, iris$Sepal.Width)
```

enter image description here

甚至像 fig.show = 'hide' 这样的其他卡盘选项也不会起作用。是否可以在 flexdashboard 的 R-chuck 中显示代码?代码突出显示比纯文本更有用。

最佳答案

如果您希望代码和绘图都显示,请将 block 选项设置为:echo = true

如果您只想将代码设置为:echo=TRUE, eval=FALSE

---
title: "Test"
output:
flexdashboard::flex_dashboard
---

```{r setup, include=FALSE}
library(flexdashboard)
```

### Code

```{r, echo=TRUE, eval=FALSE}
plot(iris$Sepal.Length, iris$Sepal.Width)
```

### Code and Plot

```{r, echo=TRUE}
plot(iris$Sepal.Length, iris$Sepal.Width)
```

### Plot

```{r, fig.align='center', echo = FALSE}
plot(iris$Sepal.Length, iris$Sepal.Width)
```

关于r - 在 flexdashboard 中显示代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43365321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com