Represents a row representing a contribution from the model in an
AnovaTable.
SystemObject Extreme.StatisticsAnovaRow Extreme.StatisticsAnovaModelRow
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public class AnovaModelRow : AnovaRow
Public Class AnovaModelRow
Inherits AnovaRow
public ref class AnovaModelRow : public AnovaRow
type AnovaModelRow =
class
inherit AnovaRow
end
The AnovaModelRow 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.) |
 | GetFTest |
Returns a FTest object that can be used to perform further
analysis on the model component.
|
 | 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 AnovaRowToString.) |
Top
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.
Reference