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      58    115
2      59    117
3      60    120
4      61    123
5      62    126
6      63    129
7      64    132
8      65    135
9      66    139
10     67    142
11     68    146
12     69    150
13     70    154
14     71    159
15     72    164

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to