OneWayAnovaModel.GetTukeyKramerTest Method

Returns the Tukey-Kramer test for the pairwise comparison of two group means.

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public AnovaPostHocTest GetTukeyKramerTest(
	int index1,
	int index2
)

Parameters

index1  Int32
The index of the first group.
index2  Int32
The index of the second group.

Return Value

AnovaPostHocTest
An AnovaPostHocTest object that represents the Tukey-Kramer for the specified groups.

Exceptions

InvalidOperationException

The Fit() method has not been called.

ArgumentOutOfRangeException

index1 is less than zero or greater than or equal to the number of groups.

-or-

index2 is less than zero or greater than or equal to the number of groups.

See Also