[R] Applying rbind() to a sequence of data frame names

2008-04-01 Thread Hans W. Borchers
I have a set of data frames ds1, ds2, ... each having the same columns and column names: ds1 - data.frame(x=c(1,2,3,4), y=c(5,6,7,8)) ds1 - data.frame(x=c(9,10,11,12), y=c(13,14,15,16)) ... and I would like to combine them into just one data frame like ds - rbind(ds1, ds2, ...) Because

Re: [R] Applying rbind() to a sequence of data frame names

2008-04-01 Thread Henrique Dallazuanna
Try this: do.call(rbind, lapply(ls(patt=^ds[0-9]), get)) On 01/04/2008, Hans W. Borchers [EMAIL PROTECTED] wrote: I have a set of data frames ds1, ds2, ... each having the same columns and column names: ds1 - data.frame(x=c(1,2,3,4), y=c(5,6,7,8)) ds1 - data.frame(x=c(9,10,11,12),