RegressionModel<T>.StandardError Property

Gets the standard error of the regression.

Definition

Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public T StandardError { get; }

Property Value

T
The standard error of the regression.

Remarks

The standard error is the root-mean-square of the residuals.

This property is only available when the model is fitted. It throws an InvalidOperationException if the model is empty or deployed.

Exceptions

InvalidOperationException Thrown if the model is empty or deployed.

See Also