Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Network analysis›Directed Closeness Centrality
Machine learningNetwork science

Directed Closeness Centrality

Directed Closeness Centrality (In-closeness and Out-closeness on Directed Graphs) · Also known as: directed closeness, in-closeness centrality, out-closeness centrality, directional closeness

Directed closeness centrality extends the classical closeness measure to directed networks by separately quantifying how quickly a node can be reached by others (in-closeness) and how quickly it can reach all others (out-closeness). It is a foundational node-level metric in social network analysis and graph theory, used wherever link direction conveys meaningful asymmetry such as citation flows, information cascades, or authority hierarchies.

ScholarGate
  1. Machine learning
  2. v1
  3. 2 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

Directed Closeness Centrality
Closeness CentralityDirected Betweenness Cen…Directed Eigenvector Cen…Directed PageRankDirected Social Network…

When to use it

Use directed closeness centrality when your network has meaningful arc directionality — citation networks, Twitter follower graphs, hyperlink structures, food webs, supply chains, or any influence flow where direction matters — and you want to identify nodes that are efficient broadcasters (out-closeness) or easy targets of diffusion (in-closeness). It is especially useful when undirected closeness would mask asymmetric roles. Do not use it on undirected networks where direction is absent or artificial. Avoid applying it to sparse or highly disconnected directed graphs without the harmonic-mean correction, as unreachable pairs inflate raw scores misleadingly. For very large graphs, computational cost of all-pairs shortest paths can be prohibitive; approximation algorithms should be considered.

Strengths & limitations

Strengths
  • Captures asymmetric reach that undirected closeness completely obscures, revealing sink versus source roles.
  • In-closeness and out-closeness together provide a two-dimensional centrality profile per node.
  • Interpretable as average directed geodesic distance — a concrete, intuitive quantity.
  • Applicable to any domain with directional flow: information, citations, resources, authority.
  • Harmonic-mean variant handles disconnected components without discarding data.
Limitations
  • All-pairs shortest-path computation is O(n(n+m)) — expensive for networks with millions of nodes.
  • Undefined or degenerate on graphs that are not strongly connected unless the harmonic-mean correction is applied.
  • Does not account for the volume of paths (only shortest ones), unlike betweenness or flow-based measures.
  • Sensitive to the choice of normalization and disconnected-pair treatment, making cross-study comparison difficult.

Frequently asked

What is the difference between in-closeness and out-closeness?

In-closeness measures how easily a node can be reached from all others along directed paths — a high in-closeness node is an efficient information sink or target. Out-closeness measures how quickly a node can reach all others — a high out-closeness node is an efficient broadcaster or spreader. The two scores can differ greatly for the same node.

What should I do if my directed graph is not strongly connected?

Use the harmonic-mean closeness formulation: instead of 1 divided by the sum of distances, compute the sum of 1/d(u,v) over reachable pairs only. This treats unreachable pairs as contributing zero, giving a valid score even in disconnected graphs. Most modern packages (NetworkX, igraph) offer this as an option.

How does directed closeness differ from directed betweenness centrality?

Closeness reflects how short a node's directed paths are to (or from) others — it is about speed of access. Betweenness centrality counts how often a node lies on directed shortest paths between other pairs — it is about brokerage and control of flows. A node can have high closeness but low betweenness if it reaches others quickly but is rarely on others' optimal routes.

Should I use directed closeness or directed PageRank to find influential nodes?

Both capture reachability in directed networks but from different angles. Directed out-closeness treats all nodes as equally important sources. PageRank weights incoming links by the importance of their source, capturing recursive authority. Use closeness when geodesic efficiency matters; use PageRank when link prestige and recursive endorsement are theoretically meaningful.

Is directed closeness centrality suitable for weighted directed graphs?

The standard formulation uses unweighted shortest-path hop counts. For weighted directed graphs — where arc weights represent distance, cost, or dissimilarity — substitute Dijkstra-based weighted shortest paths. If weights represent strength or similarity rather than distance, convert them to cost (e.g., take the inverse) before applying the algorithm.

Sources

  1. Wasserman, S. & Faust, K. (1994). Social Network Analysis: Methods and Applications. Cambridge University Press. ISBN: 978-0-521-38269-4
  2. Freeman, L. C. (1979). Centrality in social networks conceptual clarification. Social Networks, 1(3), 215–239. DOI: 10.1016/0378-8733(78)90021-7 ↗

How to cite this page

ScholarGate. (2026, June 3). Directed Closeness Centrality (In-closeness and Out-closeness on Directed Graphs). ScholarGate. https://scholargate.app/en/network-analysis/directed-closeness-centrality

Related methods

Closeness CentralityDirected Betweenness CentralityDirected Eigenvector CentralityDirected PageRankDirected Social Network Analysis

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Closeness CentralityNetwork analysis↔ compare
  • Directed Betweenness CentralityNetwork analysis↔ compare
  • Directed Eigenvector CentralityNetwork analysis↔ compare
  • Directed PageRankNetwork analysis↔ compare
  • Directed Social Network AnalysisNetwork analysis↔ compare
Compare side by side →

Referenced by

Directed Betweenness CentralityDirected Eigenvector Centrality

Similar methods

Closeness CentralityDirected Betweenness CentralityWeighted Closeness CentralityDirected Social Network AnalysisCentrality AnalysisDynamic Closeness CentralityDirected Eigenvector CentralityDegree Centrality

Related reference concepts

Shortest Path AlgorithmsNetwork Analysis in the HumanitiesPageRank and HITS AlgorithmsGraph and Network VisualizationGraph TraversalNetwork Analysis

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — Directed Closeness Centrality (Directed Closeness Centrality (In-closeness and Out-closeness on Directed Graphs)). Retrieved 2026-07-21 from https://scholargate.app/en/network-analysis/directed-closeness-centrality · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Originator
Freeman, L. C.; Wasserman, S. & Faust, K.
Year
1979–1994
Type
Centrality measure
DataType
Directed graph (adjacency matrix or edge list with arc direction)
Subfamily
Network science
Related methods
Closeness CentralityDirected Betweenness CentralityDirected Eigenvector CentralityDirected PageRankDirected Social Network Analysis
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account