mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
matching 23% complete
This commit is contained in:
parent
1e52fe7fb9
commit
7a2c90cbf3
1 changed files with 12 additions and 0 deletions
|
|
@ -174,6 +174,18 @@ class DataLoader:
|
|||
# Strip out /KNUTTON from the street name
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("/KNUTTON", "")
|
||||
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"Clevend Road", "Cleveland Road"
|
||||
)
|
||||
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"TURNERS AVENUE", "Turner Avenue"
|
||||
)
|
||||
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"WEDGEWWOD AVENUE", "Wedgwood Avenue"
|
||||
)
|
||||
|
||||
matching_lookup = []
|
||||
for _, row in tqdm(survey_list.iterrows(), total=len(survey_list)):
|
||||
house_number = row["NO."]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue