TOPICS
Search

Closeness Centrality


The closeness centrality of a graph vertex v in a graph is the reciprocal of the average graph distance from v to the other vertices reachable from v. For a connected graph G on n vertices,

 C_C(v)=(n-1)/(sum_(u!=v)d(v,u)),

where d(v,u) denotes graph distance.

In applications to social, communication, transportation, and biological networks, vertices with high closeness centrality are those from which the rest of the network can be reached using relatively short paths (Freeman 1978). It is used when fast access, dissemination, or response from a single vertex to the rest of a network is important. Like betweenness centrality, closeness centrality is a global centrality measure, but it measures nearness from a vertex to other vertices rather than how often the vertex mediates shortest paths between other pairs.

Closeness centrality is implemented in the Wolfram Language as ClosenessCentrality[g], and precomputed values for many named graphs can be obtained using GraphData[graph, "ClosenessCentralities"].


See also

Betweenness Centrality, Graph Centrality, Graph Distance, Graph Distance Matrix, Status Centrality

Explore with Wolfram|Alpha

References

Freeman, L. C. "Centrality in Social Networks: Conceptual Clarification." Social Networks 1, 215-239, 1978. https://doi.org/10.1016/0378-8733(78)90021-7.Sabidussi, G. "The Centrality Index of a Graph." Psychometrika 31, 581-603, 1966. https://doi.org/10.1007/BF02289527.

Cite this as:

Weisstein, Eric W. "Closeness Centrality." From MathWorld--A Wolfram Resource. https://mathworld.wolfram.com/ClosenessCentrality.html

Subject classifications