Add interpolated number of off-campus students in poverty to downloads

This commit is contained in:
j-meelah 2024-12-18 10:58:35 -05:00 committed by Carlos Felix
parent 64839d01ee
commit d50a91f96d
8 changed files with 15 additions and 3 deletions

View file

@ -80,6 +80,9 @@ fields:
- score_name: Total population
label: Total population
format: float
- score_name: Estimated population count of off-campus university students <200% FPL
label: Interpolated number of off-campus students in poverty
format: float
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)
label: Adjusted percent of individuals below 200% Federal Poverty Line (percentile)
format: float

View file

@ -84,6 +84,9 @@ sheets:
- score_name: Total population
label: Total population
format: float
- score_name: Estimated population count of off-campus university students <200% FPL
label: Interpolated number of off-campus students in poverty
format: float
- score_name: Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)
label: Adjusted percent of individuals below 200% Federal Poverty Line (percentile)
format: float

View file

@ -452,6 +452,7 @@ class ScoreETL(ExtractTransformLoad):
field_names.HOUSING_BURDEN_FIELD,
field_names.NO_KITCHEN_OR_INDOOR_PLUMBING_FIELD,
field_names.TOTAL_POP_FIELD,
field_names.OFFCAMPUS_UNIVERSITY_POPULATION_COUNT_UNDER_200PCT_FPL,
field_names.MEDIAN_INCOME_AS_PERCENT_OF_STATE_FIELD,
field_names.ASTHMA_FIELD,
field_names.HEART_DISEASE_FIELD,

File diff suppressed because one or more lines are too long

View file

@ -52,6 +52,11 @@ WORKFORCE_SOCIO_INDICATORS_EXCEEDED = (
# Poverty / Income
POVERTY_FIELD = "Poverty (Less than 200% of federal poverty line)"
# Interpolated number of off campus-students in poverty
OFFCAMPUS_UNIVERSITY_POPULATION_COUNT_UNDER_200PCT_FPL = (
"Estimated population count of off-campus university students <200% FPL"
)
# this is the raw, unadjusted variable
POVERTY_LESS_THAN_200_FPL_FIELD = (
"Percent of individuals below 200% Federal Poverty Line"