chainladder-python
chainladder-python copied to clipboard
std_residuals_
Prolly something dumb I'm doing.
This code works.
raa = cl.load_sample('raa')
model = cl.Development().fit(raa)
model.std_residuals_
This code doesn't.
raa = cl.load_sample('raa')
model = cl.Development().fit_transform(raa)
model.std_residuals_
I think this should work. I guess we haven't passed the std_residuals_ property on to the transformed triangle.
Done in d3c8475.