Click or drag to resize

LinearSModel Class

Represents the result of a linear regression from series.
Inheritance Hierarchy
SystemObject
  Austra.LibraryLinearModelSeries
    Austra.LibraryLinearSModel

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public sealed class LinearSModel : LinearModel<Series>

The LinearSModel type exposes the following members.

Constructors
 NameDescription
Public methodLinearSModelInitializes and computes a linear regression model.
Top
Properties
 NameDescription
Public propertyOriginalThe samples to be explained.
(Inherited from LinearModelT)
Public propertyPredictionPredicted samples.
(Inherited from LinearModelT)
Public propertyR2Explained variance versus total variance.
(Inherited from LinearModelT)
Public propertyResidualSumSquaresGets the residual sum of squares.
(Inherited from LinearModelT)
Public propertyStandardErrorGets the standard error.
(Inherited from LinearModelT)
Public propertyTotalSumSquaresGets the total sum of squares.
(Inherited from LinearModelT)
Public propertyTStatsStudent-t statistics for the weights.
(Inherited from LinearModelT)
Public propertyVariablesThe names of the samples used as predictors.
(Inherited from LinearModelT)
Public propertyWeightsCalculated weights for the predictors.
(Inherited from LinearModelT)
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringGets a textual representation of the model.
(Inherited from LinearModelT)
Public methodToString(String, IFormatProvider)Gets the string representation of the autoregressive model.
(Inherited from LinearModelT)
Top
See Also