【问题标题】:Creating a page of text in flexdashboard R在 flexdashboard R 中创建文本页面
【发布时间】:2017-03-10 20:43:21
【问题描述】:
我创建了一个三页的 flexdashboard,每页中有 3-4 个选项卡(使用 rmarkdown)。我的目标是包含一个仪表板概览页面,其中包含有关如何导航应用程序的描述以及有关如何与我联系的信息。但是,我还没有弄清楚如何将看起来像典型 rmarkdown 格式的东西插入到 flexdashboard 中?当我查看 flexdashboard 的格式时,它们只包含图表,即代码块。有没有办法在 flexdashboard 页面中包含几段带有标题、项目符号和链接的文本?
【问题讨论】:
标签:
r
r-markdown
flexdashboard
【解决方案1】:
它与降价非常相似。这是一个示例,其中第一个选项卡中有 3 个选项卡和文本 - 它有标题、文本、链接和项目符号:
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)
```