feat: impute below-threshold student loan borrowers#282
Open
nwoodruff-co wants to merge 8 commits intomainfrom
Open
feat: impute below-threshold student loan borrowers#282nwoodruff-co wants to merge 8 commits intomainfrom
nwoodruff-co wants to merge 8 commits intomainfrom
Conversation
The FRS only captures borrowers making PAYE repayments (above threshold). SLC data shows ~55% of Plan 2 holders earn below threshold. This adds probabilistic imputation of below-threshold borrowers for Plan 2 and Plan 5 based on SLC "liable to repay" counts. Changes: - Add slc/plan_*_borrowers_liable targets alongside existing above_threshold - Probabilistically assign plans to tertiary-educated people without repayments, constrained by age band and cohort - Add compute_student_loan_plan_liable() for calibration Closes #281
The strict cohort constraint (ages 21-31) missed many Plan 2 borrowers who started university late or did postgrad studies. This change: 1. Expands Plan 2 age mask from 21+ to 21-45 2. Uses age mask (not cohort) for Plan 2 below-threshold assignment 3. Assigns repayers to Plan 2 if age 21-45 and not Plan 1 cohort The below-threshold imputation now covers the full 4.95M target. The remaining gap (FRS shows 1.4M repayers vs SLC's 4M) is a data collection issue that calibration targets will help address.
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
compute_student_loan_plan_liable()for calibration against total borrower countsContext
The FRS only captures borrowers making PAYE repayments (earning above threshold). SLC data shows ~55% of Plan 2 holders earn below the repayment threshold. For Plan 5 (started 2023+), almost no borrowers are captured in FRS because graduates are too young to be above threshold.
This imputation fills the gap by assigning plans to tertiary-educated people in England based on:
Test plan
Closes #281