在我看来,knitr::purl
不处理块引用。参见例如
cat('
```{r label, eval = FALSE}
print("Second: hello world!")
```
This is first.
```{r ref.label = "label", echo = FALSE}
```
', file = "test.Rmd")
现在我们使用knit
和purl
来处理这个问题。
knitr::knit("test.Rmd", "test.md")
knitr::purl("test.Rmd", "test.R")
cat(readLines("test.md"), sep = "\n")
#> ```r
#> print("Second: hello world!")
#> ```
#>
#> This is first.
#>
#>
#> ```
#> ## [1] "Second: hello world!"
#> ```
cat(readLines("test.R"), sep = "\n")
#> ## ----label, eval = FALSE---------------------------------------------
#> ## print("Second: hello world!")
#>
#> ## ----ref.label = "label", echo = FALSE-------------------------------
#>
我不完全确定echo=FALSE
对purl
的意义,但echo=TRUE
也不起作用。 purl=TRUE
和/或eval=TRUE
也会生成相同内容。
我在这里误解了什么吗?我不应该purl
只输出knit
运行的代码吗?
答案 0 :(得分:1)
以下是我的解决方法。对于我不想运行的块,但想要包含在我指定.html
的{{1}}和.R
输出中,例如
purl = TRUE
然后以通常的方式引用它们,但使用```{r label, eval = FALSE, purl = TRUE}
server <- function(input, output, session) {
rvs <- reactiveValues(data = NULL)
# ...
}
```
例如
purl = FALSE
然后使用此后处理函数取消注释具有```{r ref.label = label, purl = FALSE, echo = FALSE}
```
的部分:
purl = TRUE