Re: [R] summary of summaries

2008-03-17 Thread Henrique Dallazuanna
Try this: summary(do.call(rbind, lapply(list(df1, df2), sapply, summary))) On 17/03/2008, Bernd Jagla <[EMAIL PROTECTED]> wrote: > Hi, > > > > I have a few hundreds files with numerical information of different length > but with the same column structure. I use the following code to get summary

[R] summary of summaries

2008-03-17 Thread Bernd Jagla
Hi, I have a few hundreds files with numerical information of different length but with the same column structure. I use the following code to get summary statistics fplist <- list.files(pattern=".*analysis") for (fp in fplist){ x2 <- read.delim(fp) summary(x2)