Computes the small-world coefficient sigma, defined as:
sigma = (C / C_rand) / (L / L_rand)
where C is clustering coefficient, L is mean path length, and _rand
are values from equivalent random graphs.
Usage
network_small_world(x, n_random = 10, ...)
Value
Numeric: small-world coefficient sigma
Arguments
x
Network input: matrix, igraph, network, cograph_network, or tna object
n_random
Number of random graphs for comparison. Default 10.
...
Additional arguments passed to to_igraph
Details
Values > 1 indicate small-world properties. Typically small-world
networks have sigma >> 1.