Artificial Intelligence Doctor

Question

Multidimensional Severity Index (MSI) validity in knee/hip osteoarthritis (OA): Evaluate the construct and criterion validity, and responsiveness, of a composite MSI combining pain and function PROs, physical-performance tests, and imaging among adults ≥70 years with knee/hip OA.

Answer (protocol-grade plan + expected benchmarks)

1) What to measure (domains & instruments)

DomainInstrumentMetricInterpretation anchor
PainWOMAC Pain (0–20)Higher = worseMCID ≈ 2
FunctionWOMAC Function (0–68) or KOOS/HOOS ADLHigher = worseMCID ≈ 6–9
Performance4-m gait speed; 30-s chair-stand; 6MWDSpeed m/s; reps; metersMCID: 0.05 m/s; 2 reps; 20–30 m
StrengthHandgrip dynamometrykg (best of 3)Frailty cutpoints (sex-specific)
StructureRadiograph KL (0–4) and/or MRI WORMSOrdinal / summedSevere = KL≥3 or WORMS high tertile
GlobalPain NRS (0–10); Patient Global (0–10)Higher = worseMCID ≈ 1–2

2) MSI construction

Step A — Standardize
Convert each metric to z-scores using age/sex-adjusted reference distributions where available; reverse-score so higher z = worse.
Step B — Weight
Derive weights via confirmatory factor analysis (CFA) on a training split (60%). Target five first-order factors (pain, function, performance, strength, structure).
Step C — Scale
Compute MSIraw = Σ (wi·zi); linearly rescale to 0–100 (0 = least severe, 100 = most severe).
MSI_raw = Σ_i (w_i * z_i) ;   MSI_0_100 = 100 * (MSI_raw - min_train) / (max_train - min_train)

3) Study design

4) Statistical analysis plan (SAP)

5) Power & sample size (sketch)

6) Handling practicalities

7) Benchmarks to claim validity (pre-specified)

PropertyThreshold to meet
CFA fitCFI/TLI ≥ 0.95; RMSEA ≤ 0.06
Criterion (KL≥3)AUC ≥ 0.80 (95% CI lower bound ≥ 0.75)
Convergent|r| with gait speed/6MWD ≥ 0.5
Known-groupsΔMSI ≥ 0.5 SD across severity strata
ResponsivenessSRM ≥ 0.6; MCID ~ 6–8 points
ReliabilityICC ≥ 0.85 for MSI

8) Cut-points (provisional; to validate)

9) Pseudocode (clinic-ready computation)

# Inputs (all oriented so higher = worse):
# womac_pain, womac_function, gait_speed, chair_stand_reps, sixmwd, grip_kg, kl_grade
# sex ('F'/'M'), age

# Standardize (examples; use cohort means/SDs or external norms):
z_pain      = (womac_pain     - mean_pain)  / sd_pain
z_function  = (womac_function - mean_func)  / sd_func
z_gait      = -(gait_speed    - mean_gait)  / sd_gait      # negative: slower = worse
z_chair     = -(chair_stand_reps - mean_chair) / sd_chair  # fewer reps = worse
z_6mwd      = -(sixmwd        - mean_6mwd)  / sd_6mwd
z_grip      = -(grip_kg_adj(age, sex) - mean_grip) / sd_grip
z_kl        = (kl_grade       - mean_kl)    / sd_kl

# Weights (from CFA on training set; example placeholders):
w = {'pain':0.28, 'function':0.26, 'gait':0.14, 'chair':0.10, 'sixmwd':0.10, 'grip':0.06, 'kl':0.06}

MSI_raw = (w['pain']*z_pain + w['function']*z_function + w['gait']*z_gait +
           w['chair']*z_chair + w['sixmwd']*z_6mwd + w['grip']*z_grip + w['kl']*z_kl)

MSI_0_100 = 100 * (MSI_raw - min_train) / (max_train - min_train)

10) Anticipated findings & interpretation

Abbreviations — WOMAC: Western Ontario & McMaster Universities Osteoarthritis Index; KOOS/HOOS: Knee/Hip injury and Osteoarthritis Outcome Score; KL: Kellgren–Lawrence; WORMS: Whole-Organ MRI Score; 6MWD: 6‑minute walk distance; ICC: intraclass correlation coefficient; MCID: minimal clinically important difference; CFA: confirmatory factor analysis.