GoodnessOfFitStandardError Method |
Calculates the Standard Error of the regression, given a sequence of
modeled/predicted values, and a sequence of actual/observed values
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double StandardError(
IEnumerable<double> modelledValues,
IEnumerable<double> observedValues,
int degreesOfFreedom
)
Parameters
- modelledValues IEnumerableDouble
- The modelled/predicted values
- observedValues IEnumerableDouble
- The observed/actual values
- degreesOfFreedom Int32
- The degrees of freedom by which the
number of samples is reduced for performing the Standard Error calculation
Return Value
DoubleThe Standard Error of the regression
See Also