Final Selection from different methods (Origin Period Wise) #256
Replies: 4 comments 12 replies
-
Yes, the VotingChainladder is intended to provide a user selected average of different methods. |
Beta Was this translation helpful? Give feedback.
-
Also available in the tutorial. :) |
Beta Was this translation helpful? Give feedback.
-
Unfortunately, you cannot encode the information you'd like to in to Perhaps an actuarial question back you way - Why would an actuary choose different apriori expectations between BornhuetterFerguson and ELR method? They both measure the same thing; specifically the actuary's prior belief in the ultimate before seeing the loss data. |
Beta Was this translation helpful? Give feedback.
-
This is a good question and an important one. We adopt sklearn conventions for our estimators. Hyperparameters/assumptions are model features that can be set in the absence of any data. Per sklearn conventions, they belong in model initialization. The data belongs in the fit method. These are strict rules, but conformity to them is tremendously beneficial in terms of project stability and roadmapping. However, these rules also forces us to be very deliberate in classifying input from the user as assumptions or data. This has been the hardest part of developing on this project for me. Your question as I'd restate it for library usage: Is the actuary's prior belief an assumption or is it data or is it both? # A key design goal is the ability to swap out models on the same data
model1 = cl.BornhuetterFerguson(apriori=0.6).fit(X, sample_weight=sample_weight)
model2 = cl.CapeCod(trend=0, decay=0.75).fit(X, sample_weight=sample_weight) Since |
Beta Was this translation helpful? Give feedback.
-
I hope that You are fine and perfect.
Please go through the attached excel sheet.
While using chainladder-python library, we may construct the Ultimate & IBNR based on different methods available in the library. Such as:
I would like to ask you that there is any provision in the library to construct 'paid selected' (highlighted with yellow color in the excel), in which ultimate & ibnr is being selected from the different methods (period wise). I mean that chainladder method for the first 3 origin periods, BF method for the next 2 origin periods and ELR method for the last 3 origin periods.
Please guide me in this regards.
Kindly note that we used separate sample_weights for paid BF & paid ELR respectively in our calculation (in excel sheet).
Final Selection - Working Sheet.xlsx
Beta Was this translation helpful? Give feedback.
All reactions