RegressionModel<T>.FStatistic Property

Gets the F statistic for the regression.

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public double FStatistic { get; }

Property Value

Double
The F statistic for the regression.

Remarks

This property returns the value of the F statistic, which gives an indication of the significance of the model. It compares the variance attributed to the model with the variance of the residual. The PValue property returns the P-value corresponding to the F statistic.

Exceptions

InvalidOperationExceptionThe property is accessed before the model has been computed.

See Also