Skip to content

Commit

Permalink
Removed debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethshsu committed Mar 31, 2024
1 parent 92c9174 commit f1c70c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chainladder/utils/utility_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ def parallelogram_olf(
)

rate_changes = pd.Series(np.array(values), np.array(date))
print("rate_changes:\n", rate_changes)
# print("rate_changes:\n", rate_changes)
rate_changes = rate_changes.reindex(date_idx, fill_value=0)
print("rate_changes:\n", rate_changes)
# print("rate_changes:\n", rate_changes)
cum_rate_changes = np.cumprod(1 + rate_changes.values)
cum_rate_changes = pd.Series(cum_rate_changes, rate_changes.index)
# print("cum_rate_changes:\n", cum_rate_changes)
Expand Down

0 comments on commit f1c70c2

Please sign in to comment.