Class TwoWayAnovaTable summarizes the information of a traditional two-way Analysis of Variance (ANOVA) table.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
[SerializableAttribute]
public class TwoWayAnovaTable : DataFrame, 
	ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class TwoWayAnovaTable _
	Inherits DataFrame _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class TwoWayAnovaTable : public DataFrame, 
	ICloneable

Remarks

Class TwoWayAnovaTable derives from class DataFrame in order to represent a traditional two-way ANOVA table. A two-way ANOVA table contains 5 rows and 6 columns. The rows contain information for each of the following sources: Factor A, Factor B, the Interaction between Factor A and Factor B, Error (Residual), and Total. The columns contain the following quantities for each source: Degrees of Freedom, Sum of Squares, Mean Square, F statistice and P-values (only for the Factors A and B and their interaction).
Instances of TwoWayAnovaTable are obtained from a TwoWayAnova object using the AnovaTable property, and cannot be constructed independently.

Inheritance Hierarchy

See Also