Hi All,
I recently jump from 0.8x to 0.9x lmfit. This did not break much, but it did break the confidence interval calculations. My program builds a Model class to do the fitting, but then was calling lmfit.conf_interval() to calculate the true confidence intervals. That function now requires a minimizer class as an input instead of just a result object (where I previously passed in the ModelFit object from fitting my data), but I'm not sure what to pass in as the minimizer object. If I try passing in the Model object, I get an error when I have a composite object. Is there any additional information you can give me about calculating a confidence interval when using the Model architecture? It feels a little like lmfit has a split personality right now between the models and the direct use of the minimizer.