Compute betweenness centrality for edges.
Betweenness centrality of an edge is the fraction of all shortest paths that pass through that edge.
Parameters: | G : graph
normalized : bool, optional
weighted_edges : bool, optional
|
---|---|
Returns: | edges : dictionary
|
See also
betweenness_centrality, edge_load
Notes
The algorithm is from Ulrik Brandes [R34].
For weighted graphs the edge weights must be greater than zero. Zero edge weights can produce an infinite number of equal length paths between pairs of nodes.
References
[R34] | (1, 2) A Faster Algorithm for Betweenness Centrality. Ulrik Brandes, Journal of Mathematical Sociology 25(2):163-177, 2001. http://www.inf.uni-konstanz.de/algo/publications/b-fabc-01.pdf |