根据参数排除标签Rmarkdown

时间:2017-05-15 14:41:57

标签: tabs include r-markdown parameterized chunks

我知道我可以在Rmarkdown中使用参数包含排除r代码块。 http://rmarkdown.rstudio.com/developer_parameterized_reports.html

但是,如何根据参数值排除或包含选项卡。 标签显示为:

## Header {.tabset}

### Tab 1
content Tab 1

### Tab 2
content Tab 2

##

我正在寻找像

这样的东西
    ## Header {.tabset}

    ### Tab 1
    content Tab 1

    ifelse(param == False) {
    ### Tab 2
    content Tab 2
    }
    ##

更新

我对StatnMap的答案有些麻烦。使用此代码,在第一个块中,R块之后的HTML仍然显示为R块本身。我可以通过为R块使用单独的eval = FALSE来解决这个问题,但我宁愿将自己局限于单个块中的单个参数。因此,仅在asis块中设置eval = FALSE

## HEADER {.tabset .tabset-pills} 
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

``` {asis, echo = TRUE, eval = FALSE}
### TEST1
```{r echo=FALSE, warning=FALSE}
library(dplyr)
summary(cars)
```
You can also embed plots, for example:
```

### TEST2
```{r, pressure, echo=FALSE}
plot(pressure)
```

1 个答案:

答案 0 :(得分:1)

您可以在asis数据块中包含降价语法:

```{asis, echo=TRUE, eval=param}
### Tab 2
content Tab 2
```