Papers
Topics
Authors
Recent
2000 character limit reached

Weighted Degree Centrality

Updated 8 January 2026
  • Weighted Degree Centrality is a network measure that aggregates the weights of edges incident to each node, reflecting both connectivity and functional significance.
  • It operates in linear time with respect to the number of edges, ensuring computational efficiency and stability against perturbations in edge weights.
  • The method extends to interval-weighted networks using tunable parameters, making it valuable for practical applications in infrastructure resilience, trade, and mobility analysis.

Weighted Degree Centrality is a fundamental class of centrality measures in network science, designed to quantify the importance of nodes by aggregating the weights of edges incident to each node. Unlike unweighted degree centrality, which merely counts adjacency relationships, weighted degree centrality incorporates edge weights—representing empirical quantities such as traffic volume, interaction strength, freight tonnage, or flow capacity—yielding measures sensitive to functional connectivity and heterogeneity. This centrality has robust mathematical properties, empirical resilience to data perturbations, and admits extensions for uncertainty quantification in interval-weighted networks.

1. Formal Definitions in Weighted Graphs and Generalizations

Let G=(V,E,W)G = (V, E, W) be a weighted graph—possibly directed—with W:E→R+W: E \rightarrow \mathbb{R}_+. Weighted degree centrality of a node v∈Vv \in V is defined as: CD(v)=∑u:(v,u)∈EW(v,u)C_D(v) = \sum_{u : (v, u) \in E} W(v, u) In directed graphs, two variants exist:

  • Out-degree centrality: COD(v)=∑u:(v,u)∈EW(v,u)C_{OD}(v) = \sum_{u : (v,u) \in E} W(v,u)
  • In-degree centrality: CID(v)=∑u:(u,v)∈EW(u,v)C_{ID}(v) = \sum_{u : (u,v) \in E} W(u,v)

For undirected graphs, each edge’s weight is counted once per endpoint. In applications such as freight transportation, total flow (both inbound and outbound) is aggregated: WD(i)=∑j∈Nin(i)θji+∑j∈Nout(i)θij\mathrm{WD}(i) = \sum_{j \in N_{\mathrm{in}}(i)} \theta_{ji} + \sum_{j \in N_{\mathrm{out}}(i)} \theta_{ij} where θji\theta_{ji} and θij\theta_{ij} represent inbound and outbound flows, respectively (Sharmin et al., 31 Dec 2025).

Generalizations to interval-weighted networks (IWN) introduce closed intervals for edge weights, wij=[w‾ij,w‾ij]w_{ij} = [\underline{w}_{ij}, \overline{w}_{ij}], yielding interval-valued degree centralities: IWD(i)=[∑jw‾ij,  ∑jw‾ij]\text{IWD}(i) = \left[ \sum_j \underline{w}_{ij},\; \sum_j \overline{w}_{ij} \right] A tunable version, IWD(α)(i)\text{IWD}^{(\alpha)}(i), interpolates between binary and sum-based degree (Alves et al., 2021).

2. Algorithmic Computation Procedures

In standard settings, computation is linear in the number of incident edges, O(∣E∣)O(|E|). Each node vv sums W(e)W(e) for ee adjacent to vv. In interval-weighted contexts, the sum produces two endpoints for each node:

  • For each i∈Vi \in V, compute Li=∑w‾ijL_i = \sum \underline{w}_{ij} and Ui=∑w‾ijU_i = \sum \overline{w}_{ij}.
  • Apply α\alpha-tuning by raising endpoints to exponent α\alpha and scaling by ki1−αk_i^{1-\alpha}, with kik_i the binary degree.

Ranking by interval-valued centrality is handled via order extensions (e.g., midpoint-then-radius criteria).

Simulation frameworks for network disruption employ static initial WDC computation, sequential node ranking, and progressive intervention—scaling incident edge weights to model node degradation (Sharmin et al., 31 Dec 2025).

3. Stability, Robustness, and Continuity Properties

Weighted degree centrality exhibits mathematical stability under weight perturbations. Let d(V,E)(G,H)=∑e∈E∣WG(e)−WH(e)∣d_{(V,E)}(G,H) = \sum_{e \in E} |W_G(e) - W_H(e)| define a metric between graphs with common topology but perturbed weights. The following holds (Segarra et al., 2014): ∣CDG(v)−CDH(v)∣≤d(V,E)(G,H)|C^G_D(v) - C^H_D(v)| \leq d_{(V,E)}(G,H) This tight bound (stability constant KG=1K_G=1) implies WDC is maximally stable: small changes in weights yield proportionally bounded changes in node scores. Empirically, numerical tests on random and real-world weighted networks confirm that WDC rankings are minimally displaced under edge noise, consistently outperforming closeness, eigenvector, betweenness, and even stabilized variants of betweenness centrality.

This robustness ensures preservation of top-kk rankings with high probability, even under moderate noise, making WDC suitable where edge weights are estimated or subject to error.

4. Extensions to Interval-Weighted Networks

Interval-Weighted Degree centrality (IWD), as formalized in (Alves et al., 2021), extends classical measures to settings with uncertain or temporally aggregated edge weights:

  • For each node, the centrality is an interval [lower bound,upper bound][\text{lower bound}, \text{upper bound}] capturing extreme scenarios.
  • The tunable α\alpha generalizes between pure topology (α=0\alpha=0, yielding [ki,ki][k_i, k_i]) and pure strength (α=1\alpha=1).
  • Algorithmic complexity remains O(∣E∣)O(|E|).

Illustrative examples span both synthetic (toy graphs) and real-world mobility and trade networks. Intervals encode uncertainty (e.g., commuter flows, yearly trade) and allow immediate nesting of the classical strength metric if weight intervals collapse to points.

Ordering of intervals for ranking central nodes requires care; midpoint-radius schemes are typical but yield only partial orderings.

5. Practical Applications in Infrastructure and Transport Resilience

Weighted degree centrality underpins targeted intervention strategies in critical infrastructure networks. In intermodal freight systems, nodes ranked by WDC (flow-weighted total tonnage) are identified as vulnerability points (Sharmin et al., 31 Dec 2025). Simulation results show:

  • Sequential partial degradation of high-WDC nodes produces sharper drops in network efficiency than betweenness- or random-targeted removals.
  • For the U.S. freight network, reducing the capacity of top WDC nodes to 60% functionality impaired global throughput more than fully eliminating path-bottlenecks, demonstrating outsized functional impact of large-volume hubs.
  • Structural resilience indicators (giant connected component size) confirm WDC-based removals fragment networks faster than unweighted degree-based selections.

A plausible implication is that flow-weighted centrality provides a more direct proxy for system-wide vulnerability than measures based solely on topology or shortest-path positions.

6. Limitations and Open Challenges

WDC inherits certain limitations that merit methodological caution, particularly for advanced analyses:

  • Ranking via interval-valued scores is coarser than with real-valued centralities, necessitating explicit ordering schemes or interval order extensions.
  • Algebraic operations (e.g., inverse, subtraction) complicate translation of IWD to path- or cost-based centrality measures.
  • Endpoint sensitivity in intervals can lead to inaccurate rankings in cases of highly skewed uncertainty; percentile or trimmed interval approaches may mitigate excessive pessimism or optimism.
  • For certain global connectivity tasks, WDC may underemphasize pathway criticality vis-à-vis betweenness, necessitating combined strategies.

7. Domain-Specific Applications and Guidelines

Weighted degree centrality, and its interval-weighted and flow-weighted generalizations, are applicable across domains where edge weights reflect empirical quantities subject to variability or error:

Practical guidelines suggest preferring WDC in noisy or uncertain data environments, prioritizing local connectivity for immediate network-level assessments, and supplementing with alternative measures when global path-based influence is critical.


Summary Table: Centrality Definitions and Key Features

Measure Mathematical Definition Key Stability/Uncertainty Feature
Weighted Degree Centrality ∑u:(v,u)∈EW(v,u)\sum_{u : (v,u) \in E} W(v,u) Stable (KG=1K_G=1); robust to noise
Interval-Weighted Degree (IWD) [∑jw‾ij,∑jw‾ij]\left[ \sum_j \underline{w}_{ij}, \sum_j \overline{w}_{ij} \right] Encodes uncertainty; interval ranking
Flow-Weighted Degree ∑j∈Nin(i)θji+∑j∈Nout(i)θij\sum_{j \in N_{\mathrm{in}}(i)} \theta_{ji} + \sum_{j \in N_{\mathrm{out}}(i)} \theta_{ij} Critical for functional resilience

Weighted Degree Centrality combines computational tractability, resilience to weight perturbations, and capacity for uncertainty quantification, making it foundational for robust network analysis in empirical, infrastructure, and uncertain environments.

Whiteboard

Topic to Video (Beta)

Follow Topic

Get notified by email when new papers are published related to Weighted Degree Centrality.