statnet
我正在尝试使用(我不能只使用igraph
,因为它没有我想要的某些指标)来计算图中特定节点的中心性指标。
如何使用这些函数的节点参数来指定它?例如,取prestige
# use the faux.magnolia.high dataset from ergm (1461 vertices and 974 edges)
library("ergm")
data(“faux.magnolia.high”)
# Try calculating for node 1
sna::prestige(faux.magnolia.high, nodes = 1, gmode = "graph")
1
# Try calculating for node 2
sna::prestige(faux.magnolia.high, nodes = 2, gmode = "graph")
不适用