Re: [R] Matrix of data frames

2008-06-05 Thread Gabor Grothendieck
On Thu, Jun 5, 2008 at 4:22 PM, <[EMAIL PROTECTED]> wrote: > Dear R-Users, > > Is there a way to create a matrix of data frames in R ? Using builtin BOD and women: > m <- matrix(list(BOD, women, women, BOD), 2) > m[[1,2]] # women height weight 1 58115 2 59117 3 601

[R] Matrix of data frames

2008-06-05 Thread tolga . i . uzuner
Dear R-Users, Is there a way to create a matrix of data frames in R ? I am pulling in data frames from a SQL database into R using RODBC. I would like to pull in a sequence of data frames which are indexed across two dimensions, and store each data frame as an element in a matrix. I did try th