这很有效。但是有更有效/更简单的方法可以获得output
吗?
test_list <- list(list("name"="A","property"=1),
list("name"="B","property"=2),
list("name"="C","property"=3))
myFunction <- function(arg1=NULL, arg2=NULL){
arg1[[arg2]]
}
# works
output <- sapply(test_list, myFunction, "property")
# returns NULL
# output <- sapply(test_list, `$`, "property")
答案 0 :(得分:2)
我们可以指定匿名函数调用来进行提取
sapply(test_list, function(x) x$property)
#[1] 1 2 3