An independent study reference written by Dr Phuc V. Nguyen. It is not official subject material — for assessment requirements always follow your subject outline and vUWS.
Closeness centrality
Closeness centrality measures how near an actor sits to everyone else. Take the geodesic distance from that actor to each other actor, meaning the number of steps on the shortest path, add those distances up, and invert. The standard normalisation divides by the total, giving a score between zero and one where high means a short average distance. Closeness reads as reach. It identifies who can get information out, or hear about a problem, in the fewest hops. It breaks on disconnected networks, where at least one distance is infinite, so a harmonic form is used instead.
Why it matters
Closeness is a commute time. Someone near the centre of a city can get anywhere in twenty minutes. Someone at the end of a branch line can reach the same places, but every trip takes an hour. Both are on the network. Only one will hear about a problem on the day it happens. Closeness asks how far you sit from the average person, not how many people sit next to you.
An internal communications team must pick one person to trial a new announcement channel, so that news reaches the whole organisation in as few relays as possible. Which measure fits the brief best?
Formulas
Worked examples
A hospital wants to choose two staff to pilot a new handover procedure, so that word of the change spreads quickly and feedback comes back fast.
Degree would pick the two people with the most contacts, who are often in the same busy unit and reach the same colleagues twice over. Closeness ranks people by average distance to everyone, and in the running six-person team it ties Ana and Dan at about 0.63 even though Ana has three contacts and Dan has two. Dan scores high because Dan sits between the two halves, so nobody is far away. Taking the top two scores separately does not guarantee the best pair, because two high scorers can cover much the same colleagues. If joint reach is the goal, score candidate pairs on how many staff they reach together.
An analyst computes closeness on a 400-person collaboration network, finds every score between 0.31 and 0.38, and reports a ranked leaderboard of the top ten.
The leaderboard is not trustworthy. In a large connected network almost everyone is a few steps from almost everyone, so closeness compresses into a narrow band and small measurement errors reorder the ranking. Two sensible responses. Report bands rather than ranks, or use a measure with more spread such as betweenness. It is also worth checking that the compression is not caused by a few hub accounts, such as an all-staff mailing list, that connect to everybody.
Common mistakes
- ✗Closeness is degree computed more slowly. Degree looks one step out and closeness looks at the whole network. An actor can have the most contacts and still sit at the edge, and an actor with two well-placed contacts can have the shortest average distance to everyone.
- ✗A higher closeness score means faster spread of anything. Closeness assumes whatever travels takes the shortest path and moves one step at a time. Money, gossip and infection do not all behave that way, and a measure built on shortest paths can mislead about a flow that wanders.
- ✗Closeness can be computed on any network as it stands. The standard formula breaks the moment one actor cannot reach another, because that distance is infinite. Either restrict the calculation to a single component and say so, or use the harmonic version.
- ✗A narrow range of closeness scores means everyone is equally placed. Compression is a property of the measure in large connected networks, not evidence about the organisation. It is a reason to distrust fine-grained rankings, not a finding.
Revision bullets
- •Closeness inverts the summed shortest-path distance to all other actors
- •Normalised form divides n-1 by that sum, so the maximum is one
- •Reads as reach and speed of access, not popularity
- •Undefined on disconnected networks; use harmonic closeness instead
- •Running example: Ana and Dan both score 5 over 8, Finn scores 5 over 14
- •Scores compress in large networks, so fine rankings are fragile
Quick check
An internal communications team must pick one person to trial a new announcement channel, so that news reaches the whole organisation in as few relays as possible. Which measure fits the brief best?
A network splits into a main body of 180 staff and an isolated group of 4 contractors who talk only to each other. Standard closeness is computed on the whole network. What happens?
Connected topics
More in Networks
Sources
- Sabidussi, G. "The Centrality Index of a Graph." Psychometrika, 31(4), 581-603, 1966.Defines centrality from the sum of distances to all other points, the basis of closeness.
- Freeman, L. C. "Centrality in Social Networks: Conceptual Clarification." Social Networks, 1(3), 215-239, 1978/79.Gives the normalisation used here and separates closeness from degree and betweenness.
- Boldi & Vigna (2014)Boldi, P., & Vigna, S. "Axioms for Centrality." Internet Mathematics, 10(3-4), 222-262, 2014.Argues for harmonic centrality as the well-behaved alternative when a network is not connected.