given that I have a vector: x <- c("m1", "m2", "m3") and every element m1, m2 and m3 is a list e.g.

m1 = list(a=1:3, b=2:4, c=1:10)  
m2 = list(a=0:3, b=0:4, c=6:10)  
m3 = list(a=1:30, b=1:2, c=6:10)  

I want to be able to create "super list" using loop:

mylist <- list()  
for(i in x)mylist[[i]] <- ...??....  

when i="m1" then mylist[["m1"]] <- m1

any suggestion would be appreciate.

Robert

link|improve this question
2  
Not sure why would need a loop if you already have three named list, e.g. mylist <- list(m1=m1, m2=m2, m3=m3) will do the job. (BTW, as it is defined, x is already a list.) – chl Feb 4 at 9:49
Perhaps you could give a broader context of what you're trying to achieve. – Roman Luštrik Feb 4 at 10:02
feedback

1 Answer

up vote 3 down vote accepted

It looks like what you're trying to do is, given a vector of object names, combine the given objects into a list.

mylist <- lapply(x, get)
names(mylist) <- x
link|improve this answer
Thank you very much. Exactly I've been searching for this useful function: get. It works of you write: lapply(x, get) – user1160354 Feb 4 at 10:07
1  
Small improvement: sapply(x, get, simplify = FALSE) . This creates the list of lists and sets their names all in one step. – G. Grothendieck Feb 4 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.