From c52f279153a9eb559b88e029092ed285db9fe8d6 Mon Sep 17 00:00:00 2001 From: energyls Date: Fri, 1 Dec 2023 15:16:07 +0100 Subject: [PATCH] fix: fix typo --- scripts/build_industrial_database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_industrial_database.py b/scripts/build_industrial_database.py index 6579f34a..54fd0c35 100644 --- a/scripts/build_industrial_database.py +++ b/scripts/build_industrial_database.py @@ -258,7 +258,7 @@ def create_cement_db(): # Dropping the null capacities reduces the dataframe from 3000+ rows to 1672 rows na_index = df_cement[df_cement.capacity.isna()].index print( - "There are {} out of {} total cement plants with unknown capcities, setting value to country average".format( + "There are {} out of {} total cement plants with unknown capacities, setting value to country average".format( len(na_index), len(df_cement) ) ) @@ -434,7 +434,7 @@ def create_paper_df(): # Dropping the null capacities reduces the dataframe from 3000+ rows to 1672 rows na_index = df_paper[df_paper.capacity.isna()].index print( - "There are {} out of {} total paper plants with unknown capcities, setting value to country average".format( + "There are {} out of {} total paper plants with unknown capacities, setting value to country average".format( len(na_index), len(df_paper) ) )