Represents a row in an AnovaTable.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Class AnovaRow
C#
public class AnovaRow
C++
public ref class AnovaRow

Methods

IconTypeDescription
Equals(Object)
Determines whether the specified Object is equal to the current Object.
Finalize()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
GetHashCode()
Serves as a hash function for a particular type.
GetType()
Gets the Type of the current instance.
MemberwiseClone()
Creates a shallow copy of the current Object.
ToString()
Returns a String representation of this instance.

Properties

IconTypeDescription
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.
Table
Gets the AnovaTable that contains the current row.

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.

Inheritance Hierarchy

System.Object
  Extreme.Statistics.AnovaRow