From 4f6a1b5286d4899a82520670350d3ffa084e81e4 Mon Sep 17 00:00:00 2001 From: Emma Nechamkin Date: Wed, 3 Aug 2022 17:45:12 -0400 Subject: [PATCH] added indoor plumbing to score housing burden --- .../data-pipeline/data_pipeline/etl/sources/hud_housing/etl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/data-pipeline/data_pipeline/etl/sources/hud_housing/etl.py b/data/data-pipeline/data_pipeline/etl/sources/hud_housing/etl.py index 756786e1..6a6a70bb 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/hud_housing/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/hud_housing/etl.py @@ -20,7 +20,7 @@ class HudHousingETL(ExtractTransformLoad): "HOUSING_BURDEN_DENOMINATOR" ) self.NO_KITCHEN_OR_INDOOR_PLUMBING_FIELD_NAME = ( - "No kitchen or indoor plumbing (percent)" + "Share of homes with no kitchen or indoor plumbing (percent)" ) # Note: some variable definitions. @@ -246,6 +246,7 @@ class HudHousingETL(ExtractTransformLoad): self.HOUSING_BURDEN_NUMERATOR_FIELD_NAME, self.HOUSING_BURDEN_DENOMINATOR_FIELD_NAME, self.HOUSING_BURDEN_FIELD_NAME, + self.NO_KITCHEN_OR_INDOOR_PLUMBING_FIELD_NAME, "DENOM INCL NOT COMPUTED", ] ].to_csv(path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False)