Gets the F statistic for the regression.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property FStatistic As Double
C#
public double FStatistic { get; }
C++
public:
double FStatistic {
	double get ();
}

Value

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

ExceptionCondition
InvalidOperationExceptionThe property is accessed before the model has been computed.

See Also