Latest diagonal issues creating negative IBNR #233
Unanswered
AuldKingCole
asked this question in
Q&A
Replies: 1 comment
-
I suspect its confused on whether your triangle When creating your triangle, you can explicitly let it know it is cumulative by setting Truthfully, I think we need better handling of this that more loudly tells the user what is going on. Currently, the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
No matter what data I use to set up a triangle, my fitted models keep producing latest diagonals with what almost appear to be cumulative values increasing into past origins. The ultimate estimator and full triangle estimator are all working just fine, but the inaccurate latest diagonal and therefore the IBNR estimates are off:
`
sample=full_tri.loc[('private','bi_tort','Total'),'incurred']
sequence = [
("simple_dev", cl.Development(average="simple")),
("inverse_power_tail", cl.TailCurve(curve="inverse_power")),
]
pipe = cl.Pipeline(steps=sequence).fit(sample)
fitted=pipe.fit_transform(sample)
model=cl.Chainladder().fit(fitted)
`
The original triangle's latest diagonal:
The model's latest diagonal:
Thanks for any insight on the issue.
Beta Was this translation helpful? Give feedback.
All reactions