\documentclass{article} \usepackage{tikz} \usepackage[margin=1in]{geometry} \pgfrealjobname{pgfSweave-example} \title{Minimal pgfSweave Example} \author{Cameron Bracken} \begin{document} <>= setCacheDir("cache") @ \maketitle This example is identical to that in the Sweave manual and is intended to introduce pgfSweave and highlight the basic differences. Please refer to the pgfSweave vignette for more usage instructions. We embed parts of the examples from the \texttt{kruskal.test} help page into a \LaTeX{} document: <>= data(airquality) kruskal.test(Ozone ~ Month, data = airquality) @ which shows that the location parameter of the Ozone distribution varies significantly from month to month. Finally we include a boxplot of the data: \setkeys{Gin}{width=4in} \begin{figure}[!ht] \centering %notice the new options <>= boxplot(Ozone ~ Month, data = airquality,main='Ozone distribution', xlab='Month',ylab='Concentration') @ \caption{This is from pgfSweave. Text is typset by \LaTeX\ and so matches the font of the document.} \end{figure} \end{document}