0

我想使用 knitr 对 rnw 文件中的代码块使用条件评估。

当我运行官方示例时:knitr-examples/011-conditional-eval.Rnw

\documentclass{article}

\begin{document}
\SweaveOpts{concordance=TRUE}

<<controller>>=
# this variable controls if a chunk should be evaluated
dothis <- TRUE
@

<<chunk1, eval = dothis>>=
print('say hello world')
@

<<chunk2, eval = !dothis>>=
print('silence is gold')
@

\end{document}

我收到以下错误:

Writing to file test.tex
Processing code chunks with options ...
 1 : echo keep.source term verbatim (label = controller, test.Rnw:6)
Error in check(options) : invalid value for 'eval' : dothis
Calls: <Anonymous> -> SweaveParseOptions -> check
Execution halted

我究竟做错了什么?我正在使用 Rstudio 运行 rnw 文件

4

1 回答 1

2

您似乎正在运行 Sweave,而不是 knitr。检查 RStudio 中的全局或项目选项,看看它选择了哪一个。

于 2016-05-27T11:01:05.707 回答