Label Bias in a Care-Management Risk Model: Detection, Remediation and the Limits of Threshold Adjustment
← Chapter 204
Capstone 41 · Technical Report
Technical Report

Label Bias in a Care-Management Risk Model: Detection, Remediation and the Limits of Threshold Adjustment

Disparate impact analysis, calibration against the training label, re-audit against an outcome proxy that does not run through utilization, four remediation strategies, and an empirical demonstration of the calibration and error-rate impossibility.

Data  12,000 patients, one year of history and one year of follow-up
Model  Gradient boosting on five claims features, target next-year cost, top 3 percent enrolled
Comparators  Same features with next-year chronic-condition count as target; group-specific thresholds
Where this comes from
Chapter Chapter 204 · A Fairness Audit
Part Part XXXIII · Capstone Projects: Specialized Methods
Dataset capstone-fairness-audit.xlsx
Notebook View the analysis

Abstract

Objective. To determine whether a deployed care-management enrollment model allocates places equitably, and if not, to locate the mechanism and evaluate remedies.

Design. A gradient boosting regressor was fitted on five claims-derived features with next-year billed cost as the target, replicating the deployed configuration, and evaluated on a 4,800-patient holdout with capacity fixed at 3 percent. Disparate impact was assessed by the four-fifths ratio. Calibration was assessed within group against the training label. The model was then re-audited against chronic-condition count, a need proxy that does not run through utilization. Four allocation strategies were compared, and the calibration and error-rate trade-off was evaluated empirically on both the deployed and corrected labels.

Result. AUC for identifying the top 3 percent of cost was 0.920. The enrollment ratio for group B against group A was 0.36, failing the four-fifths threshold, with group B receiving 13.2 percent of places against a 29.4 percent panel share. Calibration on cost was close within both groups, with group B's realized cost 0.87 of predicted in the top two deciles. At matched predicted risk, group B carried 16 percent more chronic conditions across deciles 8 to 10. Retraining on next-year condition count raised the ratio to 0.59 and the share of genuinely high-need enrollees from 84.7 to 86.6 percent. On the cost label, equalizing false-positive rates produced a precision gap of 0.176 and equalizing precision produced a false-negative gap of 0.354; on the corrected label all gaps fell below 0.033.

1. Data and preprocessing

The extract contained 12,023 rows. Twenty-three duplicate patient identifiers were removed. Fourteen rows carried a negative prior cost, representing billing adjustments, and were set to zero. Two rows carried impossible ages (0 and 214) and were set to the median. The group field was absent for 96 patients, who were retained in model fitting and excluded from group comparisons rather than imputed.

2. Model performance on its own terms

MetricValue
AUC, top 3 percent of next-year cost0.920
Correlation of prediction with realized cost0.610
Evaluation panel4,800 patients, 4,761 with group recorded
Program capacity144 places
The model does what it was specified to do.

3. Disparate impact

Group AGroup BRatio
Enrollment rate3.72%1.36%0.36
Share of places86.8%13.2%
Share of panel70.6%29.4%
The four-fifths guideline treats a ratio below 0.80 as adverse impact requiring justification.

4. Calibration against the training label

Top two risk decilesPredictedRealizedRatio
Group A14.1k14.3k1.01
Group B12.3k10.7k0.87
Deviation from calibration favors group B, in the sense of over-predicting their spending.

Within-group calibration against cost is close, and its residual error runs in the direction opposite to the observed allocation harm. An audit restricted to the training label therefore produces no finding. This is the central methodological point: label bias is not detectable by any statistic computed against the biased label.

5. Re-audit against a need proxy

Decile of predicted cost riskGroup A conditionsGroup B conditionsRatio
82.313.191.38
92.923.761.29
104.134.651.12
8 to 10 pooled3.193.691.16
Chronic conditions on the problem list, which do not require billing to be recorded.

The mechanism is a group-dependent mapping from need to cost. At matched chronic-condition count, median next-year cost for group B is 0.59 to 0.72 of group A's. Utilization patterns are consistent with an access explanation: at every condition count group B records fewer primary-care visits and more emergency visits.

6. Remediation

StrategyB/A ratioB share of placesEnrollee conditions next yearShare truly high-need
Deployed, cost label0.3613.2%5.4284.7%
Cost label, group thresholds1.0229.9%5.4785.4%
Need label, single threshold0.5919.7%5.4986.6%
Need label, group thresholds1.0229.9%5.4684.7%
High-need defined as the top quintile of next-year chronic-condition count.

Relabeling improves targeting and only partially closes the allocation gap, because the feature set carries the same access-dependence as the original label. Group-specific thresholds close the gap by construction without reordering candidates, and therefore improve targeting only incidentally. The combination attains parity at the deployed model's targeting level, which is a genuine trade rather than a free improvement.

7. The calibration and error-rate trade-off

A bar chart of group B's share of program places under four approaches, 13.2, 29.9, 19.7 and 29.9 percent, against a dashed reference line at their 29.4 percent panel share.
Figure 1. Allocation outcome under each remediation strategy.
Threshold rulePrecision gapFalse-positive gapFalse-negative gap
Target: high cost, base rates 22.9% and 13.1%
One threshold for all0.0940.0490.115
Equalize false-positive rate0.1760.0010.017
Equalize precision0.0020.0980.354
Target: high need, base rates 31.4% and 35.9%
One threshold for all0.0510.0240.098
Equalize false-positive rate0.0320.0010.026
Equalize precision0.0010.0280.027
Absolute between-group gaps. No threshold pair closes all three on the cost label.

The impossibility of simultaneous calibration and equal error rates under unequal base rates is a theorem, not an artifact of search. What the second block shows is that its practical severity is a function of the base-rate difference, and that the base-rate difference on the deployed label was substantially manufactured by the choice of target: 9.8 points on cost against 4.5 points in the opposite direction on need.

8. Limitations

Chronic-condition count is itself recorded through clinical contact and retains bias in the same direction, so the estimated disparity is a lower bound. A single binary protected attribute is analyzed; intersectional audits face severe multiplicity and cell-size problems not addressed here. The analysis concerns allocation only and estimates no treatment effect; whether the program benefits either group, or benefits them equally, requires a randomized rollout. Parity is evaluated under fixed capacity, so all redistribution is zero-sum. The four-fifths rule is a screening heuristic from employment law with no claim to being a definition of fairness in a clinical allocation setting.

From Statistics, Data Science and AI: A Visual Handbook by John Fisher. Every statistic, table, and figure in this report is reproduced by the companion notebook.