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
Error in line 159 of curve_plotter if y_interp_err is not a float.
y_interp_err
I fixed this locally with if type(y_interp_err) is not float: y_interp_err = 0
if type(y_interp_err) is not float: y_interp_err = 0
however, not sure that's the best way to do this... because there should be some awareness that the interp_err is not getting calculated right
Try to fit a curve to some absurd data
The text was updated successfully, but these errors were encountered:
nkanazawa1989
Successfully merging a pull request may close this issue.
Informations
What is the current behavior?
Error in line 159 of curve_plotter if
y_interp_err
is not a float.I fixed this locally with
if type(y_interp_err) is not float: y_interp_err = 0
however, not sure that's the best way to do this... because there should be some awareness that the interp_err is not getting calculated right
Steps to reproduce the problem
Try to fit a curve to some absurd data
What is the expected behavior?
Suggested solutions
The text was updated successfully, but these errors were encountered: