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
bootstrap_analysis
As reported by a user:
The bootstrap_analysis function crashes if the function being bootstrapped returns a scalar-valued variable. For example:
def bootfcn(V): fit = dl.fit(Vmodel,V) return fit_s1.model, fit.P, fit.P_scale, fit.conc, fit.mod bootuq = dl.bootstrap_analysis(bootfcn,Vexp,Vfit)
This is easily fixed when passing them as a list, so it should be an easy fix:
def bootfcn(V): fit = dl.fit(Vmodel,V) return fit_s1.model, fit.P, [fit.P_scale], [fit.conc], [fit.mod] bootuq = dl.bootstrap_analysis(bootfcn,Vexp,Vfit)
The text was updated successfully, but these errors were encountered:
luisfabib
Successfully merging a pull request may close this issue.
As reported by a user:
The
bootstrap_analysis
function crashes if the function being bootstrapped returns a scalar-valued variable. For example:This is easily fixed when passing them as a list, so it should be an easy fix:
The text was updated successfully, but these errors were encountered: