Skip to content
Prev 312246 / 398513 Next

write out list of lists with names

try this:
+ 0.455195366623, 0.565174432205497, 0.208180556861924), .Names = c("MU.16",
+ "MU.19", "MU.21", "mean", "sd")), MU11 = structure(c(0.56061565798878,
+ 0.65200918021661, 0.606312419102695, 0.0646249793238221), .Names = c("MU.21",
+ "MU.22", "mean", "sd")), MU12 = structure(c(0.77265115449472,
+ 0.3925776107826, 0.38222435807226, 0.515817707783193, 0.222484520748552
+ ), .Names = c("MU.14", "MU.20", "MU.23", "mean", "sd")), MU13 =
structure(c(0.36360576458114,
+ 0.21396125968483, 0.288783512132985, 0.105814644179484), .Names = c("MU.20",
+ "MU.22", "mean", "sd")), MU14 = structure(c(0.31692017862428,
+ 0.31692017862428, NA), .Names = c("MU.18", "mean", "sd")), MU15 =
structure(c(0.57645424339545,
+ 0.82369227173036, 0.700073257562905, 0.174823686402807), .Names = c("MU.18",
+ "MU.22", "mean", "sd"))), .Names = c("MU10", "MU11", "MU12",
+ "MU13", "MU14", "MU15"))
+     cat(i, "\n")
+     print(x[[i]])
+ }
MU10
    MU.16     MU.19     MU.21      mean        sd
0.8052791 0.4350489 0.4551954 0.5651744 0.2081806
MU11
     MU.21      MU.22       mean         sd
0.56061566 0.65200918 0.60631242 0.06462498
MU12
    MU.14     MU.20     MU.23      mean        sd
0.7726512 0.3925776 0.3822244 0.5158177 0.2224845
MU13
    MU.20     MU.22      mean        sd
0.3636058 0.2139613 0.2887835 0.1058146
MU14
    MU.18      mean        sd
0.3169202 0.3169202        NA
MU15
    MU.18     MU.22      mean        sd
0.5764542 0.8236923 0.7000733 0.1748237
On Wed, Nov 28, 2012 at 10:30 AM, Iain Gallagher
<iaingallagher at btopenworld.com> wrote: