你能在r闪亮的flexdashboard中为标签分配id吗?

时间:2016-09-02 16:03:43

标签: html r flexdashboard

我想知道你是否可以在r flexdashboard中为标签(以及更普遍的其他元素)分配id。

我想这样做,所以我可以根据点击的标签创建条件面板。

我对html的知识非常有限。

下面的

是一个示例代码。

---
title: "Example"
output: 
    flexdashboard::flex_dashboard:
        theme: simplex
        orientation: rows
        vertical_layout: fill
        social: menu
        source_code: embed
runtime: shiny
---
```{r setup, include=FALSE}
options(xtable.include.rownames=F)

library(flexdashboard)
```

Column 
-------------------------------------

### Chart 1

```{r}
```

Column {.tabset}
-------------------------------------

### Chart 2

```{r}
```   

### Chart 3

```{r}
```

1 个答案:

答案 0 :(得分:0)

对我来说,它的工作原理如下:

  1. 您将“名称”归因于列,例如: Column 1Column mycolumn
  2. 您可以在flexdashboard中的其他位置引用此列,其中包含:

    [This is a column](#column-1)或  [Show me the column](#column-mycolumn)

  3. 然后,通过点击“[]”中的任何内容,您将被重定向到“()”中引用的内容。