将编码输入到块中的knitr chunk选项代码在带编织器1.6.10的R 3.1.1中不起作用

时间:2014-07-27 17:15:49

标签: r latex knitr sweave formatr

我在knitr 1.6.10中使用R 3.1.1。块选项code似乎不起作用。我的.Rnw格式的MWE如下:

\documentclass{article} 

\begin{document}
<< packages, include=FALSE, cache=FALSE>>=
library(knitr)
library(formatR)
@

<<test, code=formatR::usage(lm), eval=FALSE>>=
@

\end{document}

以前这个函数正在运行(See here),但是即使formatR::usage(lm)在块代码之外工作,它也无法正常工作。任何帮助将受到高度赞赏。谢谢

1 个答案:

答案 0 :(得分:1)

The answer you mentioned已声明 formatR 版本必须为&gt; = 0.10.3,这是一个开发版本。

devtools::install_github('yihui/formatR')