mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 01:31:25 -08:00
Add interpolated number of off-campus students in poverty to downloads
This commit is contained in:
parent
64839d01ee
commit
d50a91f96d
8 changed files with 15 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue