WLJS LogoWLJS Notebook

EdgeBetweennessCentrality

EdgeBetweennessCentrality[g] gives a list of betweenness centralities for the edges in the graph g.

Examples

Compute edge betweenness centrality:

EdgeBetweennessCentrality[Graph[{1 -> 2, 2 -> 3, 1 -> 3}]]

Identify important edges:

g = GridGraph[{3, 3}];
EdgeBetweennessCentrality[g]

Please visit the official Wolfram Language Reference for more details.

On this page