Rmd / Bookdown在Rmd文档之间共享部分/等

时间:2017-12-18 01:31:27

标签: r r-markdown bookdown

您有2个文件:1)商业和2)技术 这两者永远不应该在以下意义上分歧: 商业文档中的任何内容必须,逐字记录在技术文档中。

使用Rmd / Bookdown可以在R中使用以下内容吗?

本着“编写你希望拥有的代码”的精神:

Commercial.Rmd

```{r child = 'chapter_01.Rmd'}
```

Ch_01.Rmd:

## Section A
This is the sales by quarter:

```{r sales_by_quarter, results='asis'}
```

Technical.Rmd

```{r child = 'chapter_01_technical.Rmd'}
```

chapter_01_technical.Rmd:

</ Some magic to pull in 'Section A' from 'chapter_01.Rmd' \>

### Technical subsection
We define sales according to .... and handle missing data ...
```r sales_missing_data_summary
```

我知道以下内容:

将文件包含在另一个

```{r child = 'chapter1.Rmd'}
```

包括R代码

```{r shared_code}
```

代码在shared.R中定义:

#shared.R
#This code snippet is included in multiple places
## @knitr shared_code
a <- 10
b <- 0.05

0 个答案:

没有答案