AnovaRow Class

Represents a row in an AnovaTable.

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public class AnovaRow
Inheritance
Object  →  AnovaRow
Derived

Remarks

Use an AnovaRow object to represent a row in an AnovaTable. An ANOVA table summarizes the contributions of various components of a statistical model to the total variation in the data.

AnovaRow objects allow you to access this information through the DegreesOfFreedom, SumOfSquares and MeanSquare properties.

The TotalRow and ErrorRow properties of the AnovaTable class return objects of type AnovaRow. The CompleteModelRow and property and the GetModelRow(Int32) method return objects of type AnovaModelRow, which inherits from AnovaRow, and contains additional properties that give an indication of the significance of the contribution.

AnovaRow objects can't be constructed independently. They are created automatically when the model is computed.

Properties

Caption Gets or sets the caption for this AnovaRow.
DegreesOfFreedom Gets the number of degrees of freedom of the row.
MeanSquare Gets the mean square.
RowType Gets the AnovaRowType for the row.
SumOfSquares Gets the sum of squares.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a String representation of this instance.
(Overrides Object.ToString())

See Also