gpt4 book ai didi

r - Igraph:导出具有顶点和边属性的列表顶点

转载 作者:行者123 更新时间:2023-12-04 02:14:13 30 4
gpt4 key购买 nike

我有美国城市间的贸易数据。我有城市(节点)和贸易(边)的属性数据。

考虑下图:

library(igraph)
gg <- graph.atlas(711)
V(gg)$name <- 1:7
V(gg)$city <- c("BOISE","NEW YORK","NEW YORK","BOISE","BOISE","LA","LA")
V(gg)$color <- ifelse(V(gg)$city=="BOISE", "orange","yellow")
gg <- delete.edges(gg, E(gg,P=c(1,2,2,3,2,7,7,6,7,3,3,4,3,5,4,5,5,6,6,1)))
gg <- add.edges(gg,c(1,4,4,5,5,1),attr=list(trade=1))
gg <- add.edges(gg,c(7,5,5,4,4,7),attr=list(trade=2))
gg <- add.edges(gg,c(7,3,3,5,5,7),attr=list(trade=3))
gg <- add.edges(gg,c(2,7,7,6,6,2),attr=list(trade=4))
gg <- add.edges(gg,c(6,4),attr=list(trade=5))
plot(gg, edge.label=E(gg)$trade)

生成以下内容:

trade network

据此,我想将包含边缘属性的边缘列表导出到文本文件。

例如:

[CITY 1], [CITY 2], [TRADE]

对我如何做到这一点有什么帮助吗?这看起来很容易,但我真的卡住了。

最佳答案

您可以提取边列表,然后使用它来获取顶点属性并将其与边属性组合。例如

el <- as_edgelist(gg)
data.frame(city1=V(gg)[el[,1]]$city,
city2=V(gg)[el[,2]]$city,
trade=E(gg)$trade)

# city1 city2 trade
# 1 BOISE BOISE 1
# 2 BOISE BOISE 1
# 3 BOISE BOISE 1
# 4 BOISE LA 2
# 5 BOISE BOISE 2
# 6 BOISE LA 2
# 7 NEW YORK LA 3
# 8 NEW YORK BOISE 3
# 9 BOISE LA 3
# 10 NEW YORK LA 4
# 11 LA LA 4
# 12 NEW YORK LA 4
# 13 BOISE LA 5

数据看起来有点奇怪,因为您有多个顶点具有相同的城市名称。不确定那是否是您的意图。

关于r - Igraph:导出具有顶点和边属性的列表顶点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35446722/

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