Sweave is a system for combining S (or R) code with LaTeX in a single document. It is an implementation of Donald Knuth's Literate Programming concept. The Sweave file contains normal LaTeX code with R code chunks in it using the following syntax:
<<option1=TRUE,option2=3>>=
R code here
@
Generating a pdf from a Sweave file (generally with a .Rnw extension in R) is a two stage process:
- Running
Sweaveon theRnwfile, which evaluates the code chunks and generates atexfile. - Compile the resulting
texfile using e.g.pdflatex.
Sweave offers easy integration of R code into any LaTeX document. In addition, it makes repeating the analysis and generating a latex paper or report easier. An alternative to Sweave is knitr. knitr shares a lot of the syntax with Sweave, but provides more flexibility.