在 flexdashboard R 中创建一页文本
Creating a page of text in flexdashboard R
我创建了一个三页的 flexdashboard,每页有 3-4 个选项卡(使用 rmarkdown)。我的目标是包含一个仪表板概览页面,其中包含有关如何导航应用程序的说明以及有关如何与我联系的信息。但是,我还没有想出如何将看起来像典型的 rmarkdown 格式的东西插入到 flexdashboard 中?当我查看 flexdashboard 的格式时,它们只包括图表,即代码块。有没有办法将带有 headers、项目符号和链接的几段文本包含到 flexdashboard 页面中?
它与 markdown 非常相似。这是第一个选项卡中包含 3 个选项卡和文本的示例 - 它具有 header、文本、link 和项目符号:
Column {.tabset}
-----------------------------------------------------------------------
### Text
#### this is a header
This is text [link](http://www.example.com)
- one
- two
- three
### Table
```{r}
summary(cars)
```
### Plot
```{r}
plot(pressure)
```
我创建了一个三页的 flexdashboard,每页有 3-4 个选项卡(使用 rmarkdown)。我的目标是包含一个仪表板概览页面,其中包含有关如何导航应用程序的说明以及有关如何与我联系的信息。但是,我还没有想出如何将看起来像典型的 rmarkdown 格式的东西插入到 flexdashboard 中?当我查看 flexdashboard 的格式时,它们只包括图表,即代码块。有没有办法将带有 headers、项目符号和链接的几段文本包含到 flexdashboard 页面中?
它与 markdown 非常相似。这是第一个选项卡中包含 3 个选项卡和文本的示例 - 它具有 header、文本、link 和项目符号:
Column {.tabset}
-----------------------------------------------------------------------
### Text
#### this is a header
This is text [link](http://www.example.com)
- one
- two
- three
### Table
```{r}
summary(cars)
```
### Plot
```{r}
plot(pressure)
```