Auto Operating Costs Calculation
Estimating Auto Operating Costs for Travel Demand Model
-This document is just replicating the excel sheet located in /archive-v9.0/1 - Auto Operating Costs - 2022-01-11.xlsx.
1 Import Libraries
-!pip install pandas openpyxl
+This document updates the 0 - Auto Operating Cost - 2022-01-11.qmd to the new base year 2023.
+
+1 Environment Setup
+
+Load Libraries
+!pip install numpy pandas geopandas matplotlib seaborn scipy openpyxl xlrd datetime python-dotenv pdfplumber
# OR
-!conda install pandas openpyxl
-
+!conda install numpy pandas geopandas matplotlib seaborn scipy openpyxl xlrd datetime python-dotenv pdfplumber Show the code
# For Analysis
import numpy as np
import pandas as pd
@@ -185,29 +194,54 @@ from scipy.interpolate import make_interp_spline
from scipy import stats
-# For Date time processing
-import datetime






















