gpt4 book ai didi

r - tidygraph 和 igraph - 从数据帧差异构建图

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

我可以毫无问题地从两个数据帧在 igraph 中构建图形对象。当我尝试在 tidygraph 中做同样的事情时,我得到了错误。让我示范一下。首先我加载我的源数据(来自留言板的数据):

library(dplyr)
library(tidyr)
library(tidygraph)
library(lubridate)
library(iterpc)
library(igraph)

df <- data.frame(author_id = c(2,4,8,16,4,8,2,256,512,8),
topic_id = c(101,101,101,101,301,301,501,501,501,501),
time = as.POSIXct(c("2011-08-16 20:20:11", "2011-08-16 21:10:00", "2011-08-17 06:30:10",
"2011-08-17 10:08:32", "2011-08-20 22:23:01","2011-08-20 23:03:03",
"2011-08-25 17:05:01", "2011-08-25 19:15:10", "2011-08-25 20:07:11",
"2011-08-25 23:59:59")),
vendor = as.logical(c("FALSE", "FALSE", "TRUE", "FALSE", "FALSE",
"TRUE", "FALSE", "FALSE", "FALSE", "TRUE")))

接下来,我创建一个唯一的节点列表(在留言板上发布内容的人):
node <- df %>% distinct(author_id, vendor) %>% rename(id = author_id) %>% mutate(vendor = as.numeric(vendor))

然后,我的边缘列表(通过讨论线程(主题)连接的人):
edge <- df %>% 
group_by(topic_id) %>%
do(data.frame(getall(iterpc(table(.$author_id), 2, replace =TRUE)))) %>%
filter(X1 != X2) %>% rename(from = X1, to = X2) %>% select(to, from, topic_id)

使用 igraph 我可以创建这个图形对象:
test_net <- graph_from_data_frame(d = edge, directed = F, vertices = node)
plot(test_net)

这看起来不错。现在我尝试用 tidygraph 做同样的事情:
tidy_net <- tbl_graph(nodes = node, edges = edge, directed = F)
Error in add_vertices(gr, nrow(nodes) - gorder(gr)) : At type_indexededgelist.c:369 : cannot add negative number of vertices, Invalid value

哎呀!但是,当我将 igraph 对象导入 tidygraph 时:
tidy_net <- as_tbl_graph(test_net)
plot(tidy_net)

所有作品!到底是怎么回事?请帮忙。

最佳答案

我想是因为你的节点 id和边缘 tofrom是数字,它假设 min(node$id) 之间的每个整数都应该有节点(2) 和 max(node$id) (512)。你可以通过将它们强制为字符来解决这个问题。另外,您的 iterpc命令对我来说不能正常工作,所以我将它转换为 tidyr扩展数据的版本。

node <- 
df %>%
distinct(author_id, vendor) %>%
rename(id = author_id) %>%
mutate(vendor = as.numeric(vendor)) %>%
mutate(id = as.character(id))

edge <-
df %>%
group_by(topic_id) %>%
expand(topic_id, from = author_id, to = author_id) %>%
filter(from < to) %>%
select(to, from, topic_id) %>%
mutate_at(vars(to, from), as.character)

tidy_net <- tbl_graph(nodes = node, edges = edge, directed = F)
plot(tidy_net)

关于r - tidygraph 和 igraph - 从数据帧差异构建图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50457926/

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