0

是否有或多或少直接的方法来估计cohesive.blocks()igraph 0.5.4 中每个内聚块(即 的结果)的内聚性?

在实际版本 (0.6) 中有一个名为 的函数cohesion(),但在 0.5.x 版本中没有。有没有更简单的方法来计算它,还是我应该为每个块单独计算(手动!!)?

4

1 回答 1

1

这实际上在文档中,甚至在示例中:

g <- graph.disjoint.union(graph.full(4), graph.empty(2,directed=FALSE))
g <- add.edges(g,c(3,4,4,5,4,2))
g <- graph.disjoint.union(g,g,g)
g <- add.edges(g,c(0,6,1,7,0,12,4,0,4,1))

## Find cohesive blocks:
gBlocks <- cohesive.blocks(g)

## Examine block membership and cohesion:
gBlocks$blocks
# [[1]]
#  [1]  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17
# [[2]]
#  [1] 12 13 14 15 16
# [[3]]
#  [1]  0  1  2  3  4  6  7  8  9 10
# [[4]]
#  [1] 12 13 14 15
# [[5]]
#  [1] 0 1 2 3 4
# [[6]]
#  [1] 6 7 8 9

gBlocks$block.cohesion
# [1] 1 2 2 3 4 3
于 2012-10-15T12:41:35.520 回答