Analyzes a one-way classification model.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public ANOVA(
	double[][] y
)
Visual Basic (Declaration)
Public Sub New ( _
	y As Double()() _
)
Visual C++
public:
ANOVA(
	array<array<double>^>^ y
)

Parameters

y
Type: array< array< System..::.Double >[]()[] >[]()[]
Two-dimension double array containing the responses.

Remarks

The rows in y correspond to observation groups. Each row of y can contain a different number of observations.

See Also