This commit is contained in:
Michael Duong 2024-02-09 21:37:05 +00:00
parent 26a9f99e80
commit 02005254f5

View file

@ -702,7 +702,7 @@ class EPCDataProcessor:
self.data = self.data[self.data["PROPERTY_TYPE"] != IGNORED_PROPERTY_TYPES]
# We remove EPCs where the tenure is unknown, but is usually an indicator of a new build
self.data = self.data[self.data["TENURE"] != IGNORED_TENURES]
self.data = self.data[~self.data["TENURE"].isin(IGNORED_TENURES)]
def clean_multi_glaze_proportion(self, ignore_step: bool = False) -> None:
"""