Harman Patil (Editor)

Closeness centrality

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In a connected graph, the closeness centrality (or closeness) of a node is a measure of centrality in a network, calculated as the sum of the length of the shortest paths between the node and all other nodes in the graph. Thus the more central a node is, the closer it is to all other nodes.

Contents

Closeness was defined by Bavelas (1950) as the reciprocal of the farness, that is:

C ( x ) = 1 y d ( y , x ) .

where d ( y , x ) is the distance between vertices x and y . When speaking of closeness centrality, people usually refer to its normalized form which represents the average length of the shortest paths instead of their sum. It is generally given by the previous formula multiplied by N 1 , where N is the number of nodes in the graph. For large graphs this difference becomes inconsequential so the 1 is dropped resulting in:

C ( x ) = N y d ( y , x ) .

This adjustment allows comparisons between nodes of graphs of different sizes.

Taking distances from or to all other nodes is irrelevant in undirected graphs, whereas it can produce totally different results in directed graphs (e.g. a website can have a high closeness centrality from outgoing link, but low closeness centrality from incoming links).

In disconnected graphs

When a graph is not strongly connected, a widespread idea is that of using the sum of reciprocal of distances, instead of the reciprocal of the sum of distances, with the convention 1 / = 0 :

H ( x ) = y x 1 d ( y , x ) .

The most natural modification of Bavelas's definition of closeness is following the general principle proposed by Marchiori and Latora (2000) that in graphs with infinite distances the harmonic mean behaves better than the arithmetic mean. Indeed, Bavelas's closeness can be described as the denormalized reciprocal of the arithmetic mean of distances, whereas harmonic centrality is the denormalized reciprocal of the harmonic mean of distances.

This idea was explicitly stated for undirected graphs under the name valued centrality by Dekker (2005) and under the name harmonic centrality by Rochat (2009), axiomatized by Garg (2009) and proposed once again later by Opsahl (2010). It was studied on general directed graphs by Boldi and Vigna (2014). This idea is also quite similar to market potential proposed in Harris (1954) which now often goes by the term market access.

Variants

Dangalchev (2006), in a work on network vulnerability proposes for undirected graphs a different definition:

D ( x ) = y x 1 2 d ( y , x ) .

This definition is used effectively for disconnected graphs and allows to create convenient formulae for graph operations. For example if a graph G 1 + G 2 is created by linking node p of graph G 1 to node q of graph G 2 then the combine closeness is:

D ( G 1 + G 2 ) = D ( G 1 ) + D ( G 2 ) + ( 1 + D ( p ) ) ( 1 + D ( q ) ) .

The information centrality of Stephenson and Zelen (1989) is another closeness measure, which computes the harmonic mean of the resistance distances towards a vertex x, which is smaller if x has many paths of small resistance connecting it to other vertices.

In the classic definition of the closeness centrality, the spread of information is modeled by the use of shortest paths. This model might not be the most realistic for all types of communication scenarios. Thus, related definitions have been discussed to measure closeness, like the random walk closeness centrality introduced by Noh and Rieger (2004). It measures the speed with which randomly walking messages reach a vertex from elsewhere in the graph—a sort of random-walk version of closeness centrality. Hierarchical closeness of Tran and Kwon (2014) is an extended closeness centrality to deal still in another way with the limitation of closeness in graphs that are not strongly connected. The hierarchical closeness explicitly includes information about the range of other nodes that can be affected by the given node.

References

Closeness centrality Wikipedia