ARSModel Class

Represents an autoregressive model from a series.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public sealed class ARSModel : ARModel<Series>
Inheritance
Object    ARModelSeries    ARSModel

Constructors

ARSModel Initializes an autoregressive model from a series and a number of degrees.

Properties

CoefficientsInferred coefficients of the autoregressive model.
(Inherited from ARModelT)
CorrelationsGets the correlations.
(Inherited from ARModelT)
DegreesThe order of the autoregressive model, i.e. the number of degrees.
(Inherited from ARModelT)
MatrixThe correlation matrix of the autoregressive model.
(Inherited from ARModelT)
OriginalGets the data source.
(Inherited from ARModelT)
PredictionPredicted samples.
(Inherited from ARModelT)
R2Explained variance versus total variance.
(Inherited from ARModelT)
ResidualSumSquaresGets the residual sum of squares.
(Inherited from ARModelT)
TotalSumSquaresGets the total sum of squares.
(Inherited from ARModelT)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringGets the string representation of the autoregressive model.
(Inherited from ARModelT)
ToString(String, IFormatProvider)Gets the string representation of the autoregressive model.
(Inherited from ARModelT)

See Also