Papers
Topics
Authors
Recent
Search
2000 character limit reached

HCTCD: Temporal & Collaboration Decay Metric

Updated 2 January 2026
  • The paper introduces HCTCD, which integrates temporal and collaboration decay into harmonic closeness to predict citation outcomes.
  • The methodology applies exponential decay functions on collaboration recency and frequency, computed via BFS-derived shortest paths in co-authorship graphs.
  • Empirical findings demonstrate HCTCD outperforms standard centrality measures, achieving up to a 4% improvement in citation prediction accuracy.

Harmonic Closeness with Temporal and Collaboration Count Decay (HCTCD) is a centrality metric developed to assess the structural position of authors in scientific collaboration networks while explicitly accounting for both the recency and the frequency of collaborations. By extending the classical harmonic closeness framework with decay mechanisms for temporal distance and collaboration intensity, HCTCD quantifies an author's global network reach, emphasizing the dynamic, evolving topology of co-authorship graphs. The metric has demonstrated superior predictive power for citation outcomes compared to standard centrality measures, indicating its utility in explaining disparities in scientific recognition within top-tier academic venues (Jie et al., 26 Dec 2025).

1. Formal Mathematical Definition

Let G=(V,E)G=(V,E) denote the undirected co-authorship graph at a given publication year tpt_p. For every ordered author pair (i,j)(i,j), the components are defined as:

  • d(i,j)d(i,j): the shortest-path distance in GG (unweighted)
  • Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}: “age” since the last collaboration (where tijt^*_{ij} is the year of the most recent prior joint publication)
  • cijc_{ij}: total number of publications between ii and jj before tpt_p0

Two exponential decay terms are introduced:

  • Temporal decay: tpt_p1, tpt_p2
  • Collaboration count decay: tpt_p3, tpt_p4

The effective pairwise weight is tpt_p5.

HCTCD for node tpt_p6 is:

tpt_p7

where tpt_p8 is the total number of authors.

2. Algorithmic Computation and Aggregation

For a given publication tpt_p9 at (i,j)(i,j)0:

Inputs:

  • (i,j)(i,j)1: Author list of paper (i,j)(i,j)2
  • The full co-authorship graph constructed from all publications before (i,j)(i,j)3

The computation proceeds as follows:

  1. Precompute all-pairs shortest paths (i,j)(i,j)4 via BFS for the unweighted graph.
  2. For each node (i,j)(i,j)5:
    • For every (i,j)(i,j)6:
      • Compute (i,j)(i,j)7 and (i,j)(i,j)8.
      • Calculate (i,j)(i,j)9.
      • Accumulate d(i,j)d(i,j)0.
    • Normalize: d(i,j)d(i,j)1.

For team-level aggregation on an d(i,j)d(i,j)2-author paper:

Aggregation Type Formula
Unweighted sum d(i,j)d(i,j)3
Unweighted average d(i,j)d(i,j)4
Weighted sum d(i,j)d(i,j)5
Weighted average d(i,j)d(i,j)6

Here, d(i,j)d(i,j)7 modulates emphasis on lead authors (d(i,j)d(i,j)8 implies second author weight d(i,j)d(i,j)9 of the first).

3. Parameterization and Default Values

Empirically optimized parameters are:

  • Temporal decay rate GG0 (negative GG1 allows older collaborations to retain partial influence)
  • Collaboration decay rate GG2 (diminishing marginal returns for repeat co-authorship)
  • Author-order weight GG3
  • Time windows for dynamic centrality: 1, 2, 4, 8, 16 years pre-GG4; a fixed 8-year window is standard for regression analysis

A grid search over 2015–2016 data identified robust optimality ranges: GG5 (best at GG6), GG7 (best at GG8), GG9, after which performance plateaus.

4. Comparative Perspective

Standard harmonic closeness centrality is defined as Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}0, neglecting both tie recency and collaboration frequency. HCTCD down-weights obsolete links and adjusts for repeated collaborations, thus capturing:

  • The reduced importance of aged collaborations (via Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}1)
  • Saturation effects from prolific dyads (via Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}2)

Unlike metrics focusing solely on time or frequency, HCTCD integrates both axes, reflecting that aged collaborations diminish in importance while repeated collaboration with the same partner yields diminishing additional network reach. A plausible implication is that HCTCD better models real-world scholarly influence dynamics in evolving scientific communities than single-factor extensions.

5. Empirical Findings and Predictive Utility

Empirical evaluation against citation percentile statistics for 17,942 papers yields:

  • Bivariate Pearson correlation values (16-year window): degree centrality (Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}3), closeness (Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}4), HCTCD unweighted sum (Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}5), HCTCD weighted sum (Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}6, highest observed)
  • Beta regression (citation percentile as outcome, controlling for content and covariates): including HCTCD increases Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}7 from Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}8 to Δtij=tptij\Delta t_{ij} = t_p - t^*_{ij}9 (tijt^*_{ij}0AICtijt^*_{ij}1), with estimated coefficient tijt^*_{ij}2, tijt^*_{ij}3
  • Predictive models: XGBoost MSE decreases from tijt^*_{ij}4 to tijt^*_{ij}5 (tijt^*_{ij}6), correlation rises from tijt^*_{ij}7 to tijt^*_{ij}8; Random Forest correlation tijt^*_{ij}9 (with centralities) versus cijc_{ij}0 (without)

The combination of recency and tie-strength decay, along with harmonic closeness, affords HCTCD consistent improvements in both explanatory and predictive contexts for citation outcomes.

6. Implementation Complexity and Workflow

  • All-pairs shortest paths: cijc_{ij}1 via BFS per node on an unweighted co-authorship graph
  • Weight matrices (last collaboration time, collaboration count) are pre-aggregated by a single scan of the publication history
  • Centrality scores are computed dynamically for each focal window; team-level HCTCD aggregation per publication uses the above author-weighted sums or averages
  • Parameter optimization for cijc_{ij}2 is performed by grid search maximizing Pearson correlation to citation percentiles in a held-out subset
  • Beta regression uses statsmodels.betareg (Python); model evaluation utilizes both regression and tree-based ensemble methods

7. Interpretation and Significance

HCTCD unifies global network centrality, recency weighting, and saturation-adaptive tie strength to model how changing collaboration patterns influence future scholarly impact. Temporal decay (cijc_{ij}3) ensures that recent collaborations exert stronger influence, while collaboration-count decay (cijc_{ij}4) prevents overemphasis on highly prolific dyads. Weighted author-order aggregation (cijc_{ij}5) captures the hierarchical prominence of lead authors. Across all tested scenarios, HCTCD outperforms classical centralities in accounting for citation disparities, offering up to a 4% reduction in predictive mean squared error and revealing the centrality-driven inequities embedded in citation dynamics. This metric substantiates arguments for network-aware evaluation frameworks in the assessment of scientific recognition (Jie et al., 26 Dec 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Harmonic Closeness with Temporal and Collaboration Count Decay (HCTCD).