Click or drag to resize

LinearModelT Class

Represents the result of a linear regression.
Inheritance Hierarchy
SystemObject
  Austra.LibraryLinearModelT
    Austra.LibraryLinearSModel
    Austra.LibraryLinearVModel

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public abstract class LinearModel<T> : IFormattable

Type Parameters

T
The type of the data source.

The LinearModelT type exposes the following members.

Properties
 NameDescription
Public propertyOriginalThe samples to be explained.
Public propertyPredictionPredicted samples.
Public propertyR2Explained variance versus total variance.
Public propertyResidualSumSquaresGets the residual sum of squares.
Public propertyStandardErrorGets the standard error.
Public propertyTotalSumSquaresGets the total sum of squares.
Public propertyTStatsStudent-t statistics for the weights.
Public propertyVariablesThe names of the samples used as predictors.
Public propertyWeightsCalculated weights for the predictors.
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.
(Overrides ObjectToString)
Public methodToString(String, IFormatProvider)Gets the string representation of the autoregressive model.
Top
See Also