NetworkX

Previous topic

networkx.algorithms.centrality.betweenness.betweenness_centrality

Next topic

networkx.current_flow_closeness_centrality

networkx.algorithms.centrality.betweenness.edge_betweenness_centrality

edge_betweenness_centrality(G, normalized=True, weighted_edges=False)

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

A networkx graph

normalized : bool, optional

If True the betweenness values are normalized by b=b/(n-1)(n-2) where n is the number of nodes in G.

weighted_edges : bool, optional

Consider the edge weights in determining the shortest paths. The edge weights must be greater than zero. If False, all edge weights are considered equal.

Returns:

edges : dictionary

Dictionary of edges with betweenness centrality as the value.

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