gpt4 book ai didi

r - 如何在 R 中排列嵌套数据(即带父项的数据)?

转载 作者:行者123 更新时间:2023-12-02 01:40:25 24 4
gpt4 key购买 nike

我有一个具有多个级别的数据集:

  1. 类别(例如“国家/地区”)
  2. 国家/地区(例如“美国”)
  3. 城市(例如“纽约”)
  4. 县(例如“曼哈顿”)
  5. 地点(例如“时代广场”)

每一行(LVL 1 条目除外)都链接到上一级的父级。

例如:时代广场->曼哈顿->纽约->美国->国家/地区

我的问题:如何对此数据集进行排序:

df2 <- structure(list(ID = c(3,6,9,11,12,19,411,50,77,83,105),
Parent = c(12,12,77,105,19,NA,3,41,19,77,19),
Level = c(3,3,3,3,2,1,4,5,2,3,2),
Name = c("New York","Boston","Oxford","Vancouver","USA","Countries",
"Manhattan","Times Square","UK","London","Canada")),
class = "data.frame",
row.names = c(NA, -11L))

进入此:

df2 <- structure(list(ID = c(19,12,3,41,50,6,77,83,9,105,11),
Parent = c(NA,19,12,3,41,12,19,77,77,19,105),
Level = c(1,2,3,4,5,3,2,3,3,2,3),
Name = c("Countries","USA","New York","Manhattan","Times Square",
"Boston","UK","London","Oxford","Canada","Vancouver")),
class = "data.frame",
row.names = c(NA, -11L))

df2中,列表首先按照级别排列,但每个链接的子级别都位于正下方。

我尝试了几种 dyplr::arrange() 变体(例如 arrange(Level, Parent)),但都无法解释嵌套数据。我认为解决方案可能是 group_by() 和使用 array( ,.by_group = TRUE) 的组合,如此处所做的那样( R, dplyr - combination of group_by() and arrange() does not produce expected result? )。不幸的是,我无法自己解决这个问题。

有人可以帮忙吗?首选 tidyverse/dplyr 解决方案:-)

最佳答案

这是使用igraph::dfs的解决方案

library(igraph)

g <- with(na.omit(df2), graph.data.frame(cbind(Parent, ID), directed = TRUE))


data.frame(ID = as.integer(names(dfs(g, root = "19")$order))) |>
left_join(df2)

##> + Joining, by = "ID"
##> ID Parent Level Name
##> 1 19 NA 1 Countries
##> 2 12 19 2 USA
##> 3 3 12 3 New York
##> 4 41 3 4 Manhattan
##> 5 50 41 5 Times Square
##> 6 6 12 3 Boston
##> 7 77 19 2 UK
##> 8 9 77 3 Oxford
##> 9 83 77 3 London
##> 10 105 19 2 Canada
##> 11 11 105 3 Vancouver

关于r - 如何在 R 中排列嵌套数据(即带父项的数据)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71660776/

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