Replies: 3 comments 3 replies
-
Hi @graciepii, welcome! Do you happen to have a sample dataset already? I might be able to help. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Ok, not a problem, I was able to reproduce the issue. import chainladder as cl
tri = cl.load_sample("prism")["Paid"].sum().grain("OYDQ")
cl.Development(drop_high = False).fit_transform(tri) This is a bug. |
Beta Was this translation helpful? Give feedback.
2 replies
-
@graciepii this should be resolved now! |
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
-
Hello, I am currently using the below line of code, which works completely as expected for grain OYDY triangles.
dev = cl.Development(n_periods=-1, drop_high=False, drop_low=False).fit_transform(tri)
However when I use OYDM it displays the below error:
ValueError: all keys need to be the same shape
Could anyone help?
Beta Was this translation helpful? Give feedback.
All reactions