Rev 55105 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\documentclass[a4paper]{article}\title{Sweave Example 1}\author{Friedrich Leisch}\begin{document}\maketitleIn this example we embed parts of the examples from the\texttt{kruskal.test} help page into a \LaTeX{} document:<<>>=data(airquality, package="datasets")library("stats")kruskal.test(Ozone ~ Month, data = airquality)@which shows that the location parameter of the Ozonedistribution varies significantly from month to month. Finally weinclude a boxplot of the data:\begin{center}<<fig=TRUE,echo=FALSE>>=library("graphics")boxplot(Ozone ~ Month, data = airquality)@\end{center}\end{document}