5

我在data.table[...]使用knitr. 我已经看到了这个问题的答案,说明它已解决,但我仍然遇到错误。我在用data.table在 R 3.0.0 上使用版本 1.8.8。

我正在使用 ESS 13.05 附带的 Emacs 24.3。这是一个示例 .Rnw 文件:

\documentclass{article}

\begin{document}  

<<init,eval=TRUE, cache=FALSE>>=
require(data.table)
dt <- data.table(x=1:10, y=11:20)
dt
dt[x > 5]
@

\end{document}

和相应的(pdf)输出:

require(data.table)
## Loading required package: data.table
## data.table 1.8.8  For help type:  help("data.table")
dt <- data.table(x = 1:10, y = 11:20)

dt
##    x  y
## 1: 1 11
## 2: 2 12
## 3: 3 13
## 4: 4 14
## 5: 5 15
## 6: 6 16
## 7: 7 17
## 8: 8 18
## 9: 9 19 
## 10: 10 20

dt[x > 5]
## Error:  object ’x’ not found
4

1 回答 1

1

Most likely an environment issue. This should solve it:

(setq ess-swv-processing-command "%s(%s)")
于 2013-06-14T22:27:44.240 回答