Divide list/vector elements into exclusive groups
list.group(.data, ..., sorted = TRUE)
A list
or vector
One or more expressions in the scope of each element to evaluate as keys
TRUE
to sort the group keys. Ignored when the key has
multiple entries.
A list of group elements each contain all the elements in .data
belonging to the group
# NOT RUN {
x <- list(p1 = list(type='A',score=list(c1=10,c2=8)),
p2 = list(type='B',score=list(c1=9,c2=9)),
p3 = list(type='B',score=list(c1=9,c2=7)))
list.group(x, type)
list.group(x, mean(unlist(score)))
# }
Run the code above in your browser using DataLab