Skip to content

Commit

Permalink
Issue #132
Browse files Browse the repository at this point in the history
Update some logging messages
  • Loading branch information
akey7 committed Apr 7, 2020
1 parent 7719a84 commit 7eb4ed5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions post_processing_scripts/extract_crane_choice.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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}")

Expand Down

0 comments on commit 7eb4ed5

Please sign in to comment.