OneWayAnovaModel.GetFisherHayterTest Method

Returns the Fisher-Hayter test for the pairwise comparison of two group means.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public AnovaPostHocTest GetFisherHayterTest(
	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 Fisher-Hayter test 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