Simulation table for BootstrapODP #163
Unanswered
Dayananda02
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hi @Dayananda02 , There is no single simulation table, but you can get the simulation info for just about anything you want. Keep in mind, the import chainladder as cl
genins = cl.load_sample('genins') # The original triangle
bootstrap_samples = cl.BootstrapODPSample().fit_transform(genins) # A set of bootstrap samples
model = cl.Chainladder().fit(bootstrap_samples) # We can fit a Chainladder model to each of the bootstrap samples independently
model.ultimate_.iloc[:250].to_frame() # We can grab the first 250 simulated ultimates from the model into a DataFrame. The output would look something like the following, where each row represents the results from one simulation.
While I grabbed |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
How to get simulation table using BootStrapODPsample. Example for 250 simulations , need simulation table for all development periods.
Beta Was this translation helpful? Give feedback.
All reactions