Suppose I have an object x in my current session:

x <- 1

How can I use this object in an Sweave or knitr document, without having to assign it explicitly:

\documentclass{article}
\begin{document}
<<>>=
  print(x)
@
\end{document}

Reason I am asking is because I want to write an R script that imports data and then produces a report for each subject using an Sweave template.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

I think it just works. If your Sweave file is named "temp.Rnw", just run

> x <- 5
> Sweave("temp.Rnw")

You'll have to worry about naming the resulting output properly so each report doesn't get overwritten.

link|improve this answer
Sorry but how is this related to my question? – Sacha Epskamp Dec 8 '11 at 16:47
Question must not be as clear as I thought. Don't you want to find the objects in your R session and print them all in the Sweave document? – Aaron Dec 8 '11 at 16:54
I'm still not sure what you're looking for, but I'll try again. – Aaron Dec 8 '11 at 17:01
Yes I just realized this myself too. I always compile through command line and for some reason thought this did not work, thanks. – Sacha Epskamp Dec 8 '11 at 17:02
feedback

I would take a slightly different approach to this, since using global variables reduces the reproducibility of the analysis. I use brew + sweave/knitr to achieve this. Here is a simple example.

# brew template: "template.brew"
\documentclass{article}
\begin{document}
<<>>=
print(<%= x %>)
@
\end{document}

# function to write report
write_report <- function(x){
  rnw_file <- sprintf('file_%s.rnw', x)
  brew::brew('template.brew', rnw_file)
  Sweave(rnw_file)
  tex_file <- sprintf('file_%s.tex', x) 
  tools::texi2pdf(tex_file, clean = TRUE, quiet = TRUE)
}

# produce reports
dat <- 1:10
plyr::l_ply(dat, function(x) write_report(x))
link|improve this answer
Exactly. Very good point. I do not recommend using global variables outside of the document either. – Yihui Dec 10 '11 at 16:32
feedback

Both Sweave and knitr makes use of the global environment (see globalenv()) when evaluating R code chunks, so whatever in your global environment can be used for your document.

link|improve this answer
feedback

Another option I have used in the past is to have the Sweave code open a file,

in my R session

write.csv(x, "tabletoberead.csv")

in my sweave document

<<label=label, echo=FALSE>>= 
datatobeused<-read.csv("tabletoberead.csv")
...more manipulations on data ....
@ 

Obviously you should include code to stop if the file can't be found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.