【发布时间】:2021-02-15 17:14:35
【问题描述】:
我怎么能用 purrr 的地图来转换一个 tibble。
我有以下嵌套的小标题:
tbl_a <- tibble(
a = letters[1:3],
b = 1:3
)
tbl_b <- tibble(
c = letters[1:3],
d = 1:3
)
tbl_nested <- tibble(
name = c("Test", "Sand"),
nest_tbl = list(tbl_a,tbl_b)
)
最终嵌套的小标题应该是:
tbl_a_new <- tibble(
name = "Test",
a = letters[1:3],
b = 1:3
)
tbl_b_new <- tibble(
name = "San",
a = letters[1:3],
b = 1:3
)
tibble(
name = c("Test", "Sand"),
nest_tbl = list(tbl_a,tbl_b),
nest_tbl_new = list(tbl_a_new,tbl_b_new)
)
name nest_tbl nest_tbl_new
<chr> <list> <list>
1 Test <tibble [3 x 2]> <tibble [3 x 3]>
2 Sand <tibble [3 x 2]> <tibble [3 x 3]>
非常感谢 为您提供帮助
【问题讨论】: