0

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")

不适用

4

1 回答 1

1

看起来这是与学位相关的prestige. 这将起作用,但将在整个图表上进行计算:

sna::prestige(faux.magnolia.high, gmode = "graph")[2] 

在 statnet 邮件列表中查看 Skye 的完整回复:http: //mailman13.u.washington.edu/pipermail/statnet_help/2016/002175.html

于 2016-01-06T01:52:20.760 回答