Skip to content

Usage of cl.Development() and transform #541

Answered by jbogaardt
cooneycw asked this question in Q&A
Discussion options

You must be logged in to vote

Development only produces development patterns, to get ultimates and a full triangle, you'd need to additionally fit one of the IBNR models (Chainladder, BornhuetterFerguson, etc).

dev = cl.Development(average='simple').fit_transform(triangle_df)
model = cl.Chainladder().fit(dev)

or more compactly:

cl.Pipeline(
    [('dev', cl.Development(average='simple')),
     ('model', cl.Chainladder())]
).fit(triangle_df)

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@cooneycw
Comment options

@jbogaardt
Comment options

Answer selected by cooneycw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants