在flexdashboard R中创建一个文本页面

时间:2017-03-10 20:43:22

标签: r r-markdown flexdashboard

我创建了一个三页的flexdashboard,每页有3-4个标签(使用rmarkdown)。我的目标是包括一个仪表板概述页面,其中包含有关如何浏览应用程序的说明以及有关如何与我联系的信息。但是,我还没弄明白如何在Flexdashboard中插入看起来像典型的rmarkdown格式的东西?当我查看flexdashboard的格式时,它们只包含图表,即代码块。有没有办法在标题,项目符号和链接中包含几段文字到flexdashboard页面?

1 个答案:

答案 0 :(得分:2)

这与降价非常相似。这是一个有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)
```