我有一个像这样的嵌套列表:
smth <- list()
smth$a <- list(a1=1, a2=2, a3=3)
smth$b <- list(b1=4, b2=5, b3=6)
smth$c <- "C"
列表中每个元素的名称都是唯一的。
我想仅仅通过名称从这样的列表中获取一个元素而不知道它的位置。
示例:
getByName(smth, "c")
=&#34; C&#34;
getByName(smth, "b2")
= 5
此外,我真的不想使用unlist
,因为真实列表中有很多重要元素。
答案 0 :(得分:4)
到目前为止,最佳解决方案如下:
rmatch <- function(x, name) {
pos <- match(name, names(x))
if (!is.na(pos)) return(x[[pos]])
for (el in x) {
if (class(el) == "list") {
out <- Recall(el, name)
if (!is.null(out)) return(out)
}
}
}
rmatch(smth, "a1")
[1] 1
rmatch(smth, "b3")
[1] 6
完全归功于@akrun找到它而 mbedward 发布它here