Arima Model.Pseudo RSquared Property
Gets the pseudo R Squared value for the ARIMA model.
Definition
Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The pseudo R Squared value for the model.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public double PseudoRSquared { get; }
Property Value
DoubleThe 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.