gpt4 book ai didi

r - 将一个列表映射到另一个列表

转载 作者:行者123 更新时间:2023-12-05 09:31:46 26 4
gpt4 key购买 nike

有两种列表列表,一种只包含值:

lists <- list(list(c(0, 0), c(2, 2, 2), c(3, 4, 4, 5), c(5, 6, 7, 5)), 
list(c(0, 0), c(1, 1, 2), c(5, 5, 5), c(6, 6, 7, 7)))

> lists

[[1]]
[[1]][[1]]
[1] 0 0

[[1]][[2]]
[1] 2 2 2

[[1]][[3]]
[1] 3 4 4 5

[[1]][[4]]
[1] 5 6 7 5


[[2]]
[[2]][[1]]
[1] 0 0

[[2]][[2]]
[1] 1 1 2

[[2]][[3]]
[1] 5 5 5

[[2]][[4]]
[1] 6 6 7 7

而另一个列表仅包含相应的名称:

names <- list(list(c(1, 2), c(1, 2, 3), c(1, 2, 3, 4), c(1, 2, 3, 4)), 
list(c(1, 2), c(1, 2, 3), c(1, 2, 3), c(1, 2, 3, 4)))

> names

[[1]]
[[1]][[1]]
[1] 1 2

[[1]][[2]]
[1] 1 2 3

[[1]][[3]]
[1] 1 2 3 4

[[1]][[4]]
[1] 1 2 3 4


[[2]]
[[2]][[1]]
[1] 1 2

[[2]][[2]]
[1] 1 2 3

[[2]][[3]]
[1] 1 2 3

[[2]][[4]]
[1] 1 2 3 4

这两个list的list结构和元素个数完全一样。如何使列表 names 中的每个元素成为列表 lists 中每个对应元素的名称(并添加“t”作为前缀),如下所示?

[[1]][[1]]
t1 t2
0 0

[[1]][[2]]
t1 t2 t3
2 2 2

[[1]][[3]]
t1 t2 t3 t4
3 4 4 5

[[1]][[4]]
t1 t2 t3 t4
5 6 7 5


[[2]]
[[2]][[1]]
t1 t2
0 0

[[2]][[2]]
t1 t2 t3
1 1 2

[[2]][[3]]
t1 t2 t3
5 5 5

[[2]][[4]]
t1 t2 t3 t4
6 6 7 7

最佳答案

你可以写一个递归函数:

library(purrr)
fun <- function(x, y){
modify2(x, y, ~if(is_list(.x)) fun(.x, .y)
else set_names(.x, paste0('t', .y)))
}

fun(lists, names)
[[1]]
[[1]][[1]]
t1 t2
0 0

[[1]][[2]]
t1 t2 t3
2 2 2

[[1]][[3]]
t1 t2 t3 t4
3 4 4 5

[[1]][[4]]
t1 t2 t3 t4
5 6 7 5


[[2]]
[[2]][[1]]
t1 t2
0 0

[[2]][[2]]
t1 t2 t3
1 1 2

[[2]][[3]]
t1 t2 t3
5 5 5

[[2]][[4]]
t1 t2 t3 t4
6 6 7 7

关于r - 将一个列表映射到另一个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68639300/

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