Click or drag to resize

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.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

Double
The Standard Error of the regression
See Also