我正在使用as.undirected将有向图转换为无向图。但是,属性组合存在问题,特别是在第一行和第一列中。
以下是有向图(网)的外观:
net< - graph.data.frame(edges,nodes,directed = T) as.matrix(get.adjacency(net,attr =" weight"))
然后......
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.
有没有人遇到同样的问题?有人知道有办法吗?
谢谢!