[R] applying rbind to list elements

Duncan Murdoch murdoch at stats.uwo.ca
Wed Apr 25 22:18:18 CEST 2007


On 4/25/2007 4:09 PM, Hendrik Fuß wrote:
> Hi,
> 
> I have a list of n data.frames (or matrices) which I would like to
> convert to a single data.frame using rbind:
> 
>    x <- rbind( l[[1]], l[[2]], l[[3]], l[[4]], ..., l[[n]] )
> 
> Is there a simple way to do this?

do.call(rbind, l).

Duncan Murdoch



More information about the R-help mailing list