How to correctly apply drop_valuation to quarterly triangles? #455
contenrico
started this conversation in
General
Replies: 1 comment 4 replies
-
That is odd, and not the desired behavior. According to the docs, |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm working with a quarterly triangle and I'm trying to exclude the latest diagonal (valuation date 2022-12). This is the code I'm running:
cl.Development(drop_valuation='2022').fit_transform(incurred).link_ratio
However, the excluded link ratios are the following:
This is quite odd, as I would expect the following points to be excluded:
(2022, 3), (2022, 6), (2022, 9)
(2021, 15), (2021, 18), (2021, 21)
(2020, 27), (2020, 30), (2020, 33)
etc.
Is there a way to use drop_valuation that achieves this?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions