gpt4 book ai didi

r - 使用 map 和 pluck 从嵌套列表中获取值

转载 作者:行者123 更新时间:2023-12-04 12:24:34 24 4
gpt4 key购买 nike

我有以下讨厌的嵌套列表

编辑:更新为包括 value_I_dont_want

mylist <- list(
list(
nested_1 = list(
nested_2 = list(
list( value_I_want = "a", value_I_dont_want = "f"),
list( value_I_want = "b", value_I_dont_want = "g")
)
)
),
list(
nested_1 = list(
nested_2 = list(
list( value_I_want = "c", value_I_dont_want = "h"),
list( value_I_want = "d", value_I_dont_want = "i"),
list( value_I_want = "e", value_I_dont_want = "j")
)
)
)
)

我想得到所有 value_I_want

我知道我可以在 for 循环中使用以下代码
mylist[[x]]$nested_1$nested_2[[y]]$value_I_want

但我想提高我的 map 技能。我了解如何使用 map_chr当列表是单个级别但我没有找到很多关于从非常嵌套的列表中提取的资源时。我也知道我可以使用 [[但还没有找到合适的文档?

任何帮助表示赞赏!

最佳答案

如果我们需要'yay's

library(purrr)
library(dplyr)
map(mylist, ~ .x$nested_1$nested_2 %>% unlist%>% grep("^yay", ., value = TRUE))

或使用 pluck在遍历 list 后,根据键“value_I_want”提取元素与 map
map(mylist, ~ .x$nested_1$nested_2 %>% 
map(pluck, "value_I_want") )

关于r - 使用 map 和 pluck 从嵌套列表中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60918099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com