Constructs a TwoWayRanova instance, with repeated measures on one factor, from the given data frame.

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

Syntax

C#
public TwoWayRanova(
	DataFrame data,
	int repeatedFactorColIndex,
	int nonRepeatedFactorColIndex,
	int dataColIndex
)
Visual Basic (Declaration)
Public Sub New ( _
	data As DataFrame, _
	repeatedFactorColIndex As Integer, _
	nonRepeatedFactorColIndex As Integer, _
	dataColIndex As Integer _
)
Visual C++
public:
TwoWayRanova(
	DataFrame^ data, 
	int repeatedFactorColIndex, 
	int nonRepeatedFactorColIndex, 
	int dataColIndex
)

Parameters

data
Type: CenterSpace.NMath.Stats..::.DataFrame
A data frame.
repeatedFactorColIndex
Type: System..::.Int32
The index of the column for the repeated factor.
nonRepeatedFactorColIndex
Type: System..::.Int32
The index of the column for the nonrepeated factor.
dataColIndex
Type: System..::.Int32
The index of the data column. The indicated column must be numeric and cannot contain missing values.

See Also