我想知道你是否可以在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}
```
答案 0 :(得分:0)
对我来说,它的工作原理如下:
Column 1
或Column mycolumn
您可以在flexdashboard中的其他位置引用此列,其中包含:
[This is a column](#column-1)
或
[Show me the column](#column-mycolumn)
然后,通过点击“[]”中的任何内容,您将被重定向到“()”中引用的内容。