Constructs a TwoWayRanova instance, with repeated measures on both factors, from the given data frame.

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

Syntax

C#
public TwoWayRanovaTwo(
	DataFrame data,
	int factorAcolIndex,
	int factorBcolIndex,
	int dataColIndex
)
Visual Basic (Declaration)
Public Sub New ( _
	data As DataFrame, _
	factorAcolIndex As Integer, _
	factorBcolIndex As Integer, _
	dataColIndex As Integer _
)
Visual C++
public:
TwoWayRanovaTwo(
	DataFrame^ data, 
	int factorAcolIndex, 
	int factorBcolIndex, 
	int dataColIndex
)

Parameters

data
Type: CenterSpace.NMath.Stats..::.DataFrame
A data frame.
factorAcolIndex
Type: System..::.Int32
The index of the column for Factor A.
factorBcolIndex
Type: System..::.Int32
The index of the column for Factor B.
dataColIndex
Type: System..::.Int32
The index of the data column. The indicated column must be numeric and cannot contain missing values.

See Also