mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
working through matching ha24
This commit is contained in:
parent
975a9fa9a0
commit
25684622f9
1 changed files with 5 additions and 0 deletions
|
|
@ -90,6 +90,11 @@ def load_data():
|
|||
# Tidy up the street/block name a bit
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("/", ", ")
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.lower()
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.strip()
|
||||
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"Council House/Nidds Lane", "NIDDS LANE"
|
||||
)
|
||||
|
||||
# Drop all None rows
|
||||
survey_list = survey_list.dropna(how='all')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue