我的.tex文件中出现了无关的输出,我无法使用<>来抑制或汇()。值得注意的是,不需要的行不被.. {Schunk}或类似的包围。
当我使用DEoptim或rjags时,会发生这种情况,尽管这可能不仅限于这些功能。
示例 .Rnw文件:
\documentclass[a4paper, 12]{article}
begin{document}
<<echo=FALSE>>=
require(DEoptim)
Rosenbrock <- function(x){ #example from DEoptim authors
x1 <- x[1]
x2 <- x[2]
100 * (x2 - x1 * x1)^2 + (1 - x1)^2
}
lower <- c(-10,-10)
upper <- -lower
set.seed(1234)
DEoptim(Rosenbrock, lower, upper)
@
\end{document}
我想要发生什么 我想要的结果是如果输出被抑制将产生的tex文件,或者等效地,如果从.Rnw文件中删除了代码块:
\documentclass[a4paper, 12]{article}
\usepackage{Sweave}
\begin{document}
\end{document}
发生了什么 但是,生成的.tex文件具有函数输出:
\documentclass[a4paper, 12]{article}
\usepackage{Sweave}
\begin{document}
Iteration: 1 bestvalit: 132.371451 bestmemit: -1.851683 4.543355
Iteration: 2 bestvalit: 8.620563 bestmemit: -1.854371 3.369908
....few hundred lines of DEoptim output ....
$member$storepop
list()
attr(,"class")
[1] "DEoptim"
\end{document}
请注意,输出不包含在\ begin {Schunk} \ end {Schunk}中,因此$ signs会混淆LaTeX并且无法编译。
答案 0 :(得分:8)
你试过吗
<<echo=FALSE, results=hide>>
答案 1 :(得分:7)
输出来自对DEoptim中编译函数(C或Fortran)的调用。
这会产生干净的输出:
\documentclass[a4paper, 12]{article}
\begin{document}
\section{Computation in R}
<<computation,results=hide>>=
require(DEoptim)
Rosenbrock <- function(x){
x1 <- x[1]
x2 <- x[2]
100 * (x2 - x1 * x1)^2 + (1 - x1)^2
}
lower <- c(-10,-10)
upper <- -lower
set.seed(1234)
res <- DEoptim(Rosenbrock, lower, upper)
@
\section{Results}
<<results>>=
res$optim
@
\end{document}