我有一个tidygraph对象的列表。在节点数据中,我有两个列,即name和frequency。我要做的是删除任何重复多次的列表元素(即tidygraph对象)。希望我的例子能解释更多:
首先,我创建了一些节点/边数据,将它们转换为tidygraph对象,并将它们放在一个列表中:
library(tidygraph)
library(dplyr)
library(tidyr)
library(purrr)
library(stringr)
# create some node and edge data for the tbl_graph
nodes <- data.frame(name = c("x4", NA, NA),
val = c(1, 5, 2))
nodes2 <- data.frame(name = c("x4", NA, NA),
val = c(3, 2, 2))
nodes3 <- data.frame(name = c("x4", NA, NA),
val = c(5, 6, 7))
nodes4 <- data.frame(name = c("x4", "x2", NA, NA, "x1", NA, NA),
val = c(3, 2, 2, 1, 1, 2, 7))
nodes5 <- data.frame(name= c("x1", "x2", NA),
val = c(7, 4, 2))
nodes6 <- data.frame(name = c("x1", "x2", NA),
val = c(2, 1, 3))
edges <- data.frame(from = c(1,1), to = c(2,3))
edges1 <- data.frame(from = c(1, 2, 2, 1, 5, 5),
to = c(2, 3, 4, 5, 6, 7))
# create the tbl_graphs
tg <- tbl_graph(nodes = nodes, edges = edges)
tg_1 <- tbl_graph(nodes = nodes2, edges = edges)
tg_2 <- tbl_graph(nodes = nodes2, edges = edges)
tg_3 <- tbl_graph(nodes = nodes4, edges = edges1)
tg_4 <- tbl_graph(nodes = nodes5, edges = edges)
tg_5 <- tbl_graph(nodes = nodes6, edges = edges)
# put into list
myList <- list(tg, tg_1, tg_2, tg_3, tg_4, tg_5)然后,我有一个小函数,它根据name列告诉我每个列表元素的频率。也就是说,如果列name在多个列表元素中重复/相同,则频率增加。因此,在上面的示例中,tg中的name列在我的列表中出现了3次(在tg、tg_1和tg_2中相同)……所以它的频率是3。
然后,我将向每个列表元素添加一个frequency列,并更改我的原始myList对象。例如:
freqs <- lapply(myList, function(x){
x %>%
pull(name) %>%
replace_na("..") %>%
paste0(collapse = "")
}) %>%
unlist(use.names = F) %>%
as_tibble() %>%
group_by(value) %>%
mutate(val = n():1) %>%
pull(val)
newList <- purrr::imap(myList, ~.x %>%
mutate(frequency = freqs[.y]) %>%
select(name, frequency))查看newList现在返回:
> newList
[[1]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x4 3
2 NA 3
3 NA 3
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3
[[2]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x4 2
2 NA 2
3 NA 2
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3
[[3]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x4 1
2 NA 1
3 NA 1
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3
[[4]]
# A tbl_graph: 7 nodes and 6 edges
#
# A rooted tree
#
# Node Data: 7 × 2 (active)
name frequency
<chr> <int>
1 x4 1
2 x2 1
3 NA 1
4 NA 1
5 x1 1
6 NA 1
# … with 1 more row
#
# Edge Data: 6 × 2
from to
<int> <int>
1 1 2
2 2 3
3 2 4
# … with 3 more rows
[[5]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x1 2
2 x2 2
3 NA 2
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3
[[6]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x1 1
2 x2 1
3 NA 1
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3所以我们可以看到包含x4, NA, NA的name列出现了3次...但不是把频率加到每个……我似乎在倒数频率(不是故意的)...所以,x4, NA, NA说它的频率是3,然后是2,然后是1。
我正在尝试删除任何重复的列表元素,只保留频率最高的元素。例如,我想要的输出将如下所示:
> newList
[[1]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x4 3
2 NA 3
3 NA 3
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3
[[2]]
# A tbl_graph: 7 nodes and 6 edges
#
# A rooted tree
#
# Node Data: 7 × 2 (active)
name frequency
<chr> <int>
1 x4 1
2 x2 1
3 NA 1
4 NA 1
5 x1 1
6 NA 1
# … with 1 more row
#
# Edge Data: 6 × 2
from to
<int> <int>
1 1 2
2 2 3
3 2 4
# … with 3 more rows
[[3]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 × 2 (active)
name frequency
<chr> <int>
1 x1 2
2 x2 2
3 NA 2
#
# Edge Data: 2 × 2
from to
<int> <int>
1 1 2
2 1 3在这里,我们可以看到具有重复频率的元素已被删除...对于如何做到这一点,有什么建议吗?
发布于 2021-11-19 15:12:45
对original answer的评论将是改变答案的充分动力。也就是说,通过slice-ing对代码进行稍微更新,可能如下所示:
library(tidygraph) ; library(tidyverse)
freqs <- map(myList, function(x){
x %>%
pull(name) %>%
replace_na("..") %>%
paste0(collapse = "")
}) %>%
unlist(use.names = F) %>%
as_tibble() %>%
mutate(ids = 1:n()) %>%
group_by(value) %>%
mutate(val = n():1)
ids <- freqs %>% slice(1) %>% pull(ids)
freqs <- freqs %>% pull(val)
newList <- purrr::imap(myList, ~.x %>%
mutate(frequency = freqs[.y]) %>%
select(name, frequency))
newList[sort(ids)]
[[1]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 x 2 (active)
name frequency
<chr> <int>
1 x4 3
2 NA 3
3 NA 3
#
# Edge Data: 2 x 2
from to
<int> <int>
1 1 2
2 1 3
[[2]]
# A tbl_graph: 7 nodes and 6 edges
#
# A rooted tree
#
# Node Data: 7 x 2 (active)
name frequency
<chr> <int>
1 x4 1
2 x2 1
3 NA 1
4 NA 1
5 x1 1
6 NA 1
# ... with 1 more row
#
# Edge Data: 6 x 2
from to
<int> <int>
1 1 2
2 2 3
3 2 4
# ... with 3 more rows
[[3]]
# A tbl_graph: 3 nodes and 2 edges
#
# A rooted tree
#
# Node Data: 3 x 2 (active)
name frequency
<chr> <int>
1 x1 2
2 x2 2
3 NA 2
#
# Edge Data: 2 x 2
from to
<int> <int>
1 1 2
2 1 3https://stackoverflow.com/questions/70035619
复制相似问题