Replies: 1 comment 3 replies
-
Sounds like you want the multiplicative |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Everyone,
I'm trying to reproduce the example showed on the wikipedia page about Chain Ladder : https://en.wikipedia.org/wiki/Chain-ladder_method#Example
I could reproduce all the calculations showed on the page, but I'm still missing the last table : Estimation of ultimate claims
I know how to get the cdf I want to apply:
cl.Development(average="volume", n_periods=3).fit(xyz_tri["Incurred"]).cdf_
I know how to get the latest diagnoal:
xyz_tri.latest_diagonal
But how to apply the cdf to the latest diagonal in order to get the latest table of the example?
I think, I'm also missing how to calculate the tail factor?
Another question: Can I apply the cdf to the whole triangle to get the full triangle based on these cdf?
Here's what I have done so far : https://github.com/alexbcz/wikipedia_chain_ladder_example/blob/main/Wikipedia%20ChainLadder%20example.ipynb
Thank in advance
Beta Was this translation helpful? Give feedback.
All reactions