Re: [R] re ferring to a group of vectors without explicit enumeration

2008-09-07 Thread shalu
[[8]] > [1] 1 2 3 4 5 6 7 8 > > [[9]] > [1] 1 2 3 4 5 6 7 8 9 > > [[10]] > [1] 1 2 3 4 5 6 7 8 9 10 > >> > > > On Sat, Sep 6, 2008 at 5:33 PM, shalu <[EMAIL PROTECTED]> wrote: >> >> I am trying to define 25 vectors of varying

[R] re ferring to a group of vectors without explicit enumeration

2008-09-06 Thread shalu
I am trying to define 25 vectors of varying lengths, say y1 to y25 in a loop, and then store the results of some computations in them. My problem is about using some sort of concatenation for names. For example, instead of initializing each of y1 through y25, I would like to do it in a loop. Simil