Network Closeness Centrality

From SONIVIS:Wiki

Jump to: navigation, search
Network Closeness Centrality

This metric is implemented in every version.



The Network Closeness Centrality calculates network's closeness centrality (normalized number of steps required to access every other node from a given node).

Objective

The Network Closeness Centrality calculates the mean of the Closeness Centrality of the whole network. The measure is standardized on the network size. The network closeness centrality has its maximal value if one node is linked to all other nodes in the network[1]. This network is called star network.

Calculation

C_C= \frac{\sum_{i=1}^g [C_C (n*) - C_C(n_i)]}{[(g-2)(g-1)]/(2g-3)}\,\! , where C_C(n*) \,\!is the highest value of Degree Centrality of a node and g\,\! the total number of nodes in the network. [1]

Statement

R-example (igraph)
library(igraph)
graph <- graph.star(10)
sum(max(closeness(graph)) - closeness(graph)) /(((vcount(graph)-2)*(vcount(graph)-1))/(2*vcount(graph)-3))

Reference

Personal tools