From 7eb4ed563de5ff11f66cca14572d8c84e43e92fd Mon Sep 17 00:00:00 2001 From: Alicia Key Date: Tue, 7 Apr 2020 14:47:34 -0600 Subject: [PATCH] Issue #132 Update some logging messages --- post_processing_scripts/extract_crane_choice.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/post_processing_scripts/extract_crane_choice.py b/post_processing_scripts/extract_crane_choice.py index 3089b387..c876751a 100644 --- a/post_processing_scripts/extract_crane_choice.py +++ b/post_processing_scripts/extract_crane_choice.py @@ -3,11 +3,11 @@ # The extended_landbosse_details dataframe includes all the details along side # all the project list inputs -print("Reading extended details") +print("Reading extended details...") df = pd.read_csv("extended_landbosse_details.csv") # Extract the crane choice data -print("Selecting crane data") +print("Selecting erection data...") erection_df = df.query("`Module` == 'ErectionCost'")[[ "Project ID with serial", "Variable name", @@ -27,7 +27,7 @@ print("Selecting unique projects...") unique_project_id_with_serial = erection_df['Project ID with serial'].unique() -print("Aligning crane types") +print("Rearranging crane detail data from rows into columns...") for project_id_with_serial in unique_project_id_with_serial: print(f"\t{project_id_with_serial}")