在R中,我有一个加权无向图作为igraph对象:
IGRAPH e7a8fac UNW- 306 2829 --
+ attr: name (v/c), label (v/c), nom (v/c), sigle (v/c), statut (v/c), champ (v/c), cp (v/c), info (v/c), weight (e/n)
+ edges from e7a8fac (vertex names):
[1] 3 --9 7 --13 7 --15 13--15 11--16 15--17 6 --18 13--20 15--20 20--21 6 --25 18--25 6 --28 10--28 15--28 17--28 18--28 20--28 25--28
[20] 23--30 15--31 17--31 28--31 6 --33 17--33 18--33 22--33 25--33 28--33 7 --34 13--34 15--34 17--34 16--35 34--36 15--37 18--37 20--37
[39] 25--37 28--37 13--43 17--43 18--43 25--43 28--43 33--43 34--43 11--44 13--44 20--44 23--44 30--44 31--44 34--44 40--45 13--47 43--47
[58] 44--47 13--48 15--48 16--48 17--48 20--48 28--48 31--48 34--48 37--48 44--48 45--48 21--54 13--58 34--58 44--58 48--58 10--61 15--61
+ ... omitted several edges
我使用另一个包(tnet)来计算几个指标。最后,我有一个包含4列的数据框:
id degree strength degree_alpha
[1,] 1 0 0.00000 0.000000
[2,] 2 2 3.00000 2.449490
[3,] 3 1 2.00000 1.414214
[4,] 4 1 2.00000 1.414214
[5,] 5 0 0.00000 0.000000
[6,] 6 25 19.10897 21.856906
我想将三列(degree
,strength
,degree_alpha
)添加为具有匹配ID的顶点属性(数据框中的列id
,属性{在igraph中{1}}。
Igraph name
似乎是使用的工具,但我无法弄清楚如何让它通过数据框并只向现有节点添加属性。
答案 0 :(得分:7)
对我而言,我认为最简单的方法是:
igraph::as_data_frame
将图表转换为节点和边缘列表
what = 'both'
graph_from_data_frame
library(dplyr)
g <- make_graph('zachary') %>%
set_edge_attr(., 'weight', value = runif(ecount(.), 1, 10)) %>%
set_vertex_attr(., 'name', value = V(.) %>% as.numeric)
fake_data <- tibble(
id = V(g) %>% as.numeric(),
degree = degree(g),
strength = strength(g)
)
df <- igraph::as_data_frame(g, 'both')
df$vertices <- df$vertices %>%
left_join(fake_data, c('name'='id'))
updated_g <- graph_from_data_frame(df$edges,
directed = F,
vertices = df$vertices)
如果您不想从数据格式来回转换,那么是的,您可以使用set_vertex_attr
。
V(g)
updated_g2 <- g %>%
set_vertex_attr(.,
name = 'degree',
index = V(g),
value = sapply(V(g)$name, function(x){
fake_data %>%
filter(id == x) %>%
.$degree
})) %>%
set_vertex_attr(.,
name = 'strength',
index = V(g),
value = sapply(V(g)$name, function(x){
fake_data %>%
filter(id == x) %>%
.$strength
}))