Re: [R] R: extract data.frames from a list

2009-07-17 Thread Angel Spassov
Right on target! Very appreciated. Thanks. Cheers, AS On Fri, Jul 17, 2009 at 4:39 PM, Henrique Dallazuanna wrote: > do.call(rbind, tmp) > > On Fri, Jul 17, 2009 at 10:55 AM, Angel Spassov > wrote: > >> Dear useRs and developeRs, >> >> I am struggling with a simple but not obviously solvable is

Re: [R] R: extract data.frames from a list

2009-07-17 Thread Henrique Dallazuanna
do.call(rbind, tmp) On Fri, Jul 17, 2009 at 10:55 AM, Angel Spassov wrote: > Dear useRs and developeRs, > > I am struggling with a simple but not obviously solvable issue. Suppose I > have the following list of data.frames called 'tmp': > > a <- data.frame(a=rnorm(10),b=letters[1:10]) > (tmp <- l

Re: [R] R: extract data.frames from a list

2009-07-17 Thread baptiste auguie
try this, do.call(rbind, tmp) baptiste 2009/7/17 Angel Spassov > Dear useRs and developeRs, > > I am struggling with a simple but not obviously solvable issue. Suppose I > have the following list of data.frames called 'tmp': > > a <- data.frame(a=rnorm(10),b=letters[1:10]) > (tmp <- list(a,a[1

[R] R: extract data.frames from a list

2009-07-17 Thread Angel Spassov
Dear useRs and developeRs, I am struggling with a simple but not obviously solvable issue. Suppose I have the following list of data.frames called 'tmp': a <- data.frame(a=rnorm(10),b=letters[1:10]) (tmp <- list(a,a[1:4,],a[1:7,])) It is known that all data.frames in this list have the same numb