Network Closeness Centrality
From SONIVIS:Wiki
Network Closeness Centrality
|
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
, where
is the highest value of Degree Centrality of a node and
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)) |

