尝试摆脱 sweave 文档中包含的块。

尝试摆脱 sweave 文档中包含的块。

我刚刚翻译了马赛克手册,并对其进行了格式化。我将这一块用于所有软件包,但它仍然在书的第一页打印整个块:

<<include=F, results=hide, message=FALSE, warning=FALSE>>=

答案1

请始终包含一个最小的可重现示例:参见这里那里

我猜,您要找的是 echo=FALSE。

在文件中Example.rnw

\documentclass{article}

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


What I want to see

<<reg, echo = FALSE, results=hide>>=
# I don't want to see it
n <- 50
x <- seq(1, n)
a.true <- 3
b.true <- 1.5
y.true <- a.true + b.true * x
s.true <- 17.3
y <- y.true + s.true * rnorm(n)
out1 <- lm(y ~ x)
summary(out1)
@

\end{document}

相关内容