Represents a row representing a contribution from the model in an AnovaTable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
Methods
| Icon | Type | Description |
|---|---|---|
| Equals(Object) | ||
| Finalize() | ||
| GetFTest() |
Returns a FTest object that can be used to perform further
analysis on the model component.
| |
| 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
| Icon | Type | Description |
|---|---|---|
| Caption |
Gets or sets the caption for this AnovaRow.
| |
| DegreesOfFreedom |
Gets the number of degrees of freedom of the row.
| |
| FStatistic |
Gets the value of the F statistic associated with this AnovaRow.
| |
| MeanSquare |
Gets the mean square.
| |
| PValue |
Gets the significance level (probability) associated with this AnovaRow.
| |
| 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 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.