AnovaModelRow Class

Represents a row representing a contribution from the model in an AnovaTable.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class AnovaModelRow : AnovaRow
Inheritance
Object  →  AnovaRow  →  AnovaModelRow

Remarks

Use an AnovaModelRow object to represent a row in an AnovaTable. that compares the contribution of a component of the model to the variation in the data to the contribution of the variation that is not explained by the model.

AnovaModelRow inherits from AnovaRow. Two extra properties provide access to the result of this comparison.

The FStatistic property returns the F statistic for the ratio of the contributions of the variances. The PValue property gets the p-value associated with the F-statistic, and gives an indication of the significance of the contribution of the factor to the variation in the data.

The CompleteModelRow and property and the GetModelRow(Int32) method return objects of type AnovaModelRow.

AnovaModelRow 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.
(Inherited from AnovaRow)
DegreesOfFreedom Gets the number of degrees of freedom of the row.
(Inherited from AnovaRow)
FStatistic Gets the value of the F statistic associated with this AnovaRow.
MeanSquare Gets the mean square.
(Inherited from AnovaRow)
PValue Gets the significance level (probability) associated with this AnovaRow.
RowType Gets the AnovaRowType for the row.
(Inherited from AnovaRow)
SumOfSquares Gets the sum of squares.
(Inherited from AnovaRow)

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)
GetFTest Returns a FTest object that can be used to perform further analysis on the model component.
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 AnovaRow.ToString())

See Also