Using an array of ELRs for Born-Ferg #325
Unanswered
Obalus2022
asked this question in
Q&A
Replies: 1 comment
-
I think you would have to modify your You can do something like this, but it's not elegant: raa = cl.load_sample("raa")
apriori = raa.latest_diagonal * 0 + 50000
apriori.loc[:, :, "1981",] = apriori.loc[:, :, "1981",] * 0.7
apriori.loc[:, :, "1982",] = apriori.loc[:, :, "1982",] * 0.6
cl.BornhuetterFerguson(apriori=1.0).fit(X=raa, sample_weight=apriori).ultimate_ Maybe @jbogaardt knows a better way |
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
-
Hi again another question. Reviewing how chainladder handles BF. can I use a array of ELRs, or do I have to just use one?
I tried it this way and it didnt work
Beta Was this translation helpful? Give feedback.
All reactions