We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug See offending code below.
To Reproduce Steps to reproduce the behavior. Code should be self-contained and runnable against publicly available data. For example:
import chainladder as cl raa = cl.load_sample('raa') model = cl.Chainladder().fit(raa) # works assert model.predict(raa.latest_diagonal.val_to_dev()).ultimate_ == model.ultimate_ # doesn't work assert model.predict(raa.latest_diagonal).ultimate_ == model.ultimate_
The text was updated successfully, but these errors were encountered:
#399
78984fb
Resolved on master, will be in next release.
Sorry, something went wrong.
Is this change reflected in the current release? I seem to be having an issue that is likely related.
Not yet, we have not done a release since this went in. Release cadence has slowed somewhat as its my busy season.
If you want to test out the unreleased version and you have git, you should be able to install with:
pip install git+/~https://github.com/casact/chainladder-python/
This should at least let you see whether your specific issue is addressed with this bug-fix.
jbogaardt
No branches or pull requests
Describe the bug
See offending code below.
To Reproduce
Steps to reproduce the behavior. Code should be self-contained and runnable against publicly available data. For example:
The text was updated successfully, but these errors were encountered: