Displaying 1 result from an estimated 1 matches for "listofspecies".
2010 Sep 01
1
OdfWeave and Locale
Dear all,
I have a question regarding the odfweave. I created an odt file
(test_input.odt) using OO.o for WIndows XP. The code is generic.
---- Code for odt -----------
\Sexpr{dim(iris)[1]}
<<listofSpecies, echo=FALSE, results=xml>>=
odfItemize(levels(iris$Species))
@
Table 1:
<<Table, echo=FALSE, results=xml>>=
data.frame(N =tapply(iris$Petal.Length, iris$Species, length) ,mean =
tapply(iris$Petal.Length, iris$Species, mean), sd=
tapply(iris$Petal.Length, iris$Species, sd))
@
on...