在sharelatex编译R的Knitr如何删除函数的输出?

时间:2015-01-13 21:04:34

标签: r latex knitr

如何删除sharelatex中.Rtex文档中函数的输出?

我的R代码如何显示

## ---- myfunction1
dat = read.table(data.txt,header=T)
lm1 = lm(Response~.,data=dat)
drop1(lm1,test="F")

我的Rtex代码如何?

<<echo=FALSE, cache=FALSE>>=
read_chunk("myfunction.R")
@

<<myfunction>>

@

这将打印代码和输出。

如果我设置echo = FALSE,则不会打印代码,但输出会     &LT;&GT;

@

我也试过使用cache = FALSE / TRUE,hide = FALSE / TRUE但没有成功

1 个答案:

答案 0 :(得分:4)

没有承诺,但你试过了吗?

1)results = "hide",显示代码并删除输出

2)include = FALSE,它评估代码但同时删除代码和输出