\documentclass{article} \usepackage{pgf} \pgfrealjobname{example} \title{pgfSweave Example} \author{Cameron Bracken} \begin{document} <>= setCacheDir("cache") @ \maketitle In this example we embed parts of the examples from the \texttt{kruskal.test} help page into a \LaTeX{} document: <>= data(airquality) library 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: \begin{center} <>= boxplot(Ozone ~ Month, data = airquality) @ \end{center} \end{document}