Added age band

This commit is contained in:
Khalim Conn-Kowlessar 2024-07-02 18:41:10 +01:00
parent 77aaecf04f
commit 58e60ae376

View file

@ -17,7 +17,7 @@ class EnergyConsumptionModel:
"lodgement-year", "lodgement-month", "current-energy-efficiency", "energy-consumption-current",
"heating-cost-current", "total-floor-area", "number-heated-rooms",
"mainheat-description", "main-fuel", "mainheat-energy-eff", "number-habitable-rooms",
"mainheatcont-description", "property-type", "built-form",
"mainheatcont-description", "property-type", "built-form", "construction-age-band"
# To test
# "hotwater-description" - make a days since lodgment variable?
# A geographic variable
@ -31,6 +31,7 @@ class EnergyConsumptionModel:
CATEGORICAL_COLUMNS = [
"lodgement-year", "lodgement-month", "main-fuel", "mainheat-description", "number-heated-rooms",
"number-habitable-rooms", "mainheat-energy-eff", "mainheatcont-description", "property-type", "built-form",
"construction-age-band"
]
NUMERICAL_COLUMNS = ["current-energy-efficiency", "energy-consumption-current", "heating-cost-current",
"hot-water-cost-current", "total-floor-area"]