を使用して、グラフ内の特定のノードの中心性メトリックを計算しようとしています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")
NA