[R] navigating in lists

Jannis bt_jannis at yahoo.de
Wed Jan 12 21:50:24 CET 2011


Dear list members,


I am stuck with navigating in a rather complicated list object. 

In general I would need a solution to access all first (or other) elements of the different sublists in one list:

test=list(a=list(1,2),b=list(3,4),c=list(5,6))

like:

test[[1:3]][[1]]

which should result in

c(1,3,5)


Is there any way to access lists in such a way? Using unlist would create quite complicated objects....

Cheers
Jannis





More information about the R-help mailing list