SystemObject Extreme.StatisticsAnovaRow Extreme.StatisticsAnovaModelRow
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ref class AnovaRow
type AnovaRow = class end
The AnovaRow type exposes the following members.
Top
| Name | Description |
---|
 | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
 | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
 | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
 | ToString |
Returns a String representation of this instance.
(Overrides ObjectToString.) |
Top
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.
Reference