Skip to content
Prev 214551 / 398500 Next

Accessing data in groups created with split() and other beginner questions

To access elements of a list (object returned by split), you need to use "[[".

Therefore,

summary(temp[[1]])

is what you meant to use (or even summ = lapply(temp, summary) - which
will give you the summaries for every subject).

About using PDFs, I'd recommend you to take a look at Sweave (
http://www.statistik.lmu.de/~leisch/Sweave/ )

b
On Mon, Mar 22, 2010 at 1:27 PM, Clay Heaton <ccheaton at gmail.com> wrote: