Skip to content

Commit

Permalink
add inflation rate for 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
lisazeyen committed Feb 16, 2024
1 parent a3aa3c3 commit 8788cac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/compile_cost_assumptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2127,6 +2127,10 @@ def prepare_inflation_rate(fn):
inflation_rate.rename(index=lambda x: int(x), inplace=True)
inflation_rate = inflation_rate.astype(float)

inflation_rate = inflation_rate.iloc[:,0]/100

# add inflation for 2023
inflation_rate.loc[2023] = 0.064
return inflation_rate.iloc[:,0]/100

# %% *************************************************************************
Expand Down

0 comments on commit 8788cac

Please sign in to comment.