I cam trying to pass an expr as a variable name and cannot figure it out.
# Example list
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)))
# This works
list.map(x, type)
# This does not (it returns "type" three times)
sel <- "type"
list.map(x, sel)
I cam trying to pass an expr as a variable name and cannot figure it out.
Any suggestions?