在igraph中使用as.undirected时出现属性组合问题

时间:2017-07-11 17:15:15

标签: r matrix attributes igraph undirected-graph

我正在使用as.undirected将有向图转换为无向图。但是,属性组合存在问题,特别是在第一行和第一列中。

以下是有向图(网)的外观:

  

net< - graph.data.frame(edges,nodes,directed = T)   as.matrix(get.adjacency(net,attr =" weight"))

matrix

然后......

  

netSym< - as.undirected(net," collapse",edge.attr.comb =" sum")   as.matrix(get.adjacency(netSym,attr =" weight"))

matrix with attributes combined, and the inexplicable error

基本上,一切都是正确的,除了OL和OM的组合。它应该是10而不是11.

有没有人遇到同样的问题?有人知道有办法吗?

谢谢!

0 个答案:

没有答案