# Recreating the dataset based on the publication list
# Author strings are simplified to determine position logic.
pubs_data <- tribble(
~Title, ~Year, ~Authors, ~Citations,
# --- SINGLE AUTHOR (NC_s) ---
"compute.es: Compute Effect Sizes (R package)", 2013, "AC Del Re", 372,
"A Practical Tutorial on Conducting Meta-Analysis in R", 2015, "AC Del Re", 150,
"RcmdrPlugin.MAc (R package)", 2010, "AC Del Re", 4,
"Mindfulness practice quality (Dissertation/Paper)", 2011, "AC Del Re", 3,
# --- FIRST AUTHOR (NC_sf) ---
"Therapist effects in the therapeutic alliance–outcome relationship", 2012, "AC Del Re, C Flückiger, AO Horvath...", 757,
"Examining therapist effects in the alliance–outcome relationship", 2021, "AC Del Re, C Flückiger, AO Horvath...", 203,
"Monitoring mindfulness practice quality", 2013, "AC Del Re, C Flueckiger, SB Goldberg...", 163,
"MAd: Meta-analysis with mean differences (2012)", 2012, "AC Del Re, WT Hoyt", 124,
"Efficacy of new generation antidepressants", 2013, "AC Del Re, GI Spielmans...", 77,
"Intention-to-treat analyses and missing data", 2013, "AC Del Re, NC Maisel...", 73,
"MAc: Meta-Analysis with Correlations (R Package)", 2010, "AC Del Re, WT Hoyt", 70,
"MAd: Meta-analysis with mean differences (2014)", 2014, "AC Del Re, WT Hoyt", 58,
"Prescription of topiramate to treat alcohol use", 2013, "AC Del Re, AJ Gordon...", 43,
"The declining efficacy of naltrexone", 2013, "AC Del Re, N Maisel...", 41,
"Placebo group improvement in trials", 2013, "AC Del Re, N Maisel...", 33,
"Antiobesity medication use across VHA", 2014, "AC Del Re, SM Frayne...", 32,
"Meta-analysis (APA)", 2016, "AC Del Re, C Flückiger", 7,
"Practice Quality-Mindfulness", 2025, "AC Del Re, C Flückiger...", 2,
# --- LAST AUTHOR (NC_sfl) ---
"Effect size calculation in meta-analyses", 2018, "WT Hoyt, AC Del Re", 73,
"The sleeper effect between psychotherapy orientations", 2017, "C Flückiger, AC Del Re", 38,
"Open access meta-analysis for psychotherapy", 2016, "SA Baldwin, AC Del Re", 25,
"Do some theory-specific psychotherapies outperform others", 2024, "C Flückiger, AC Del Re", 0,
# --- MIDDLE AUTHOR (Excluded from Authorship Metrics, included in Total/H-index) ---
"Alliance in individual psychotherapy (2011)", 2011, "AO Horvath, AC Del Re, C Flückiger...", 3933,
"The alliance in adult psychotherapy (2018)", 2018, "C Flückiger, AC Del Re, BE Wampold...", 2415,
"How central is the alliance in psychotherapy?", 2011, "C Flückiger, AC Del Re, BE Wampold...", 1024,
"Substance use disorders and racial/ethnic minorities", 2013, "C Flückiger, AC Del Re...", 78,
"The effectiveness of evidence-based treatments (Personality)", 2013, "SL Budge, AC Del Re...", 111,
"A meta-analysis of topiramate’s effects", 2014, "JC Blodgett, AC Del Re...", 239,
"Cognitive-behavioral therapy versus other therapies", 2013, "TP Baardseth, AC Del Re...", 232,
"Evidence-based treatments for depression/anxiety", 2011, "BE Wampold, AC Del Re...", 181,
"In pursuit of truth: A critical examination", 2017, "BE Wampold, AC Del Re...", 213,
"The reciprocal relationship between alliance", 2020, "C Flückiger, AC Del Re...", 255,
"Assessing the alliance–outcome association", 2020, "C Flückiger, AC Del Re...", 183
)
# NOTE: The list above covers the major hits.
# To match the EXACT screenshot total (12,348), we add a "Balance" row.
# This represents smaller papers, conference abstracts, and tail-end publications
# that contribute to the total count but likely don't change the H-index.
current_sum <- sum(pubs_data$Citations)
target_sum <- 12348
balance <- target_sum - current_sum
pubs_data <- pubs_data %>%
add_row(Title = "Remainder of Publications (Tail)", Year = NA, Authors = "Various", Citations = balance)