我正在使用Blogdown为网络创建内容。通常,我需要包含来自.Rmd
片段(markdown + R计算)的一些内容。
例如,我在common.Rmd
中有以下常见内容:
The **correlation** between the terms of topic `A` and topic `B` is as follows:
```{r}
kendall.tau(x,y)
```
Some more text here...
然后我有了文件content1.Rmd
:
The two data sets are similar to topic `A` and `B`:
<reference 'common.Rmd' here>
Bla bla...
如何包括 .Rmd
个文件,以便将它们的输出准确地放置在另一个.Rmd
文件中我想要的位置?