-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
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
Update ConfidenceInterval class constructor parameters #937
Conversation
Defining `self.min_rel_change` in confidence.py as variable Fixes lmfit#936
I fully agree with addition. I think a test showing that changing the parameter does something useful would be nice. |
@Anselmoo Thanks -- I agree with this being better as a command-line argument. So, Yes, Thanks! I'm not sure I understand all the test failures, but bear with us as we try to figure out what is causing them. |
…l class According to review, set to the end of the functions Fix formatting in conf_interval function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @Anselmoo ; it looks like that correcting the position of the new argument fixed the tests as well. This looks good to me, except for a few changes that are required in the docstring.
@Anselmoo Thanks - that looks good to me. |
Defining
self.min_rel_change
in confidence.py as variable Fixes #936Description
This pull request updates the constructor parameters of the ConfidenceInterval class in
confidence.py
. Specifically, it adds a new parameter calledmin_rel_change
with a default value of 1e-5. This change addresses issue #936.Type of Changes
Tested on
Verification
Have you