我有大图并且使用过
decom = decompose.graph(gr)
分离加权连接图。 接下来,我使用下面的代码来组合一些分解后的图形:
remain_graph = decom[[1]]+decom[[2]]
边缘和节点正确组合,但边缘的权重未转移到“ remain_graph”。
E(remain_graph)$weigh # answer is NULL
“ decom [[1]]”和“ decom [[2]]”的权重不为空!!!!! ????
E(decom[[1]])$weight #answer is 1.22 1 5.666
E(decom[[2]])$weight #answer is 2.07 5 1.893
我测试其他代码,例如:
g=decom[[1]]
remain_graph= All_graph - E(g)
remain_graph= All_graph - V(g)
但是这个问题一直存在。