在sna中使用nodes参数用于中心度量

时间:2016-01-05 20:42:57

标签: r sna statnet

我正在尝试使用statnet计算图表中特定节点的中心度量标准(我不能只使用igraph,因为它没有我想要的某些指标)。< / p>

如何使用这些函数的nodes参数来指定它?例如,取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")
  

NA

1 个答案:

答案 0 :(得分:1)

看起来这是与Course.users的学位相关版本中的错误。这将有效但计算将在整个图表上完成:

prestige

请参阅Skye对statnet邮件列表的完整回复: http://mailman13.u.washington.edu/pipermail/statnet_help/2016/002175.html