ens {influenceR} | R Documentation |
Burt's Effective Network Size and Constraint index. The next two functions below provide ways to measure the actors' access to structural holes in a network. Structural holes "provide opportunities to broker connections between people" (Burt 2008).
ens(g)
g |
The igraph object to analyze. |
A numeric vector with the effective network size for each vertex
http://ronaldsburt.com/research/files/NNappB.pdf
ig.ex <- igraph::erdos.renyi.game(100, p.or.m=0.3) # generate an undirected 'igraph' object ens(ig.ex) # Effective Network Size scores for each node in the graph