I'd like to subset a list of sublists, based on the contents of one of the sublist elements, in a manner similar to the way subset works on data frames:
sublist1 <- list(data=rnorm(10), name="name1", keepMe=2)
sublist2 <- list(data=rnorm(10), name="name2", keepMe=2)
sublist3 <- list(data=rnorm(10), name="name3", keepMe=3)
myList <- list(s1=sublist1, s2=sublist2, s3=sublist3)
I'd like to do something like keepers <- subset[myList, keepMe==2] which would return a list of length 2.
The following is almost what I want:
require(plyr)
selector <- function(x) {
if (x$keepMe==2) {return(x)}
else {return(NULL)}
}
keepers <- llply(myList, selector)
except that in that case the undesirable list elements don't get thrown out, they just get replaced with NULL.
Note that in all cases the sublists will have the same components, only the values of the components change.
