LabPlot/DataAnalysis/CurveFitting

From KDE UserBase Wiki

Curve Fitting

LabPlot calculates several statistical measures that help to estimate the goodness of the fit.

Sum of squared errors (SSE)
Also known as residual sum of squares (RSS) or sum of squared residuals (SSR):
Mean squared error (MSE)
Root-mean squared error (RMSE)
Mean absolute error (MAE)
Residual mean square (RMS)
Residual standard deviation (RSD)
Coefficient of determination ():
Adjusted coefficient of determination ():


The implementation of the fitting procedure with bounded parameters follows the implementation in MINUIT [http://seal.web.cern.ch/seal/documents/minuit/mnusersguide.pdf]. Using hard limits for the parameters directly during the calculation is challenging, especially while calculating the derivatives. Instead, a transformation to internal parameters that are free from any bounds is performed. This transformation is designed to limit the original (external) parameters to the specified bounds while allowing the internal parameters to take any values.

For both the lower (min) and the upper (max) parameter bounds specified, the mapping between the bounded parameters and the parameters used internally in the calculation is given by:

For single sided limits with only the lower limit available:

And similarly for parameters with upper limits only:

The transformation introduces additional non-linearity and numerical instabilities, even for linear problems. Therefore, it is recommended to impose limits on the parameters only if really required. Furthermore, for more stable error analysis results, the fit should be re-performed again without any limits once a reasonable minimum was found.