Class TwoWayRanovaTwoTable summarizes the information of a traditional two-way Analysis of Variance, with repeated measures on both factors, table,

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

Syntax

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

Remarks

Class TwoWayRanovaTwoTable derives from class DataFrame in order to represent a traditional two-way RANOVA table. A two-way RANOVA table contains 7 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, the Interactions between Factor A and subjects, the interaction between Factor B and subjets, Error (Residual), and Total. The columns contain the followingquantities 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 TwoWayRanovaTwoTable are obtained from a TwoWayRanovaTwo object using the RanovaTable property, and cannot be constructed independently.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.DataFrame
    CenterSpace.NMath.Stats..::.TwoWayAnovaTable
      CenterSpace.NMath.Stats..::.TwoWayRanovaTwoTable

See Also