ArimaModel.PseudoRSquared Property

Gets the pseudo R Squared value for the ARIMA model.

Definition

Namespace: Extreme.Statistics.TimeSeriesAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public double PseudoRSquared { get; }

Property Value

Double
The pseudo R Squared value for the model.

Remarks

The R2 value indicates the ratio of variation that is explained by the model to the total variation in the model. Its value is usually between 0 and 1, where 0 indicates the model explains nothing, and 1 means the model explains the data perfectly.

The value of R2 only makes sense for linear models. For an ARIMA model, the pseudo-R2 is the ratio of the explained variance to the total variance in the model.

See Also