GrubbsTest Constructor

Definition

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GrubbsTest() Constructs a new Grubbs test for a single outlier.
GrubbsTest(Vector<Double>) Constructs a new Grubbs test for a single outlier.
GrubbsTest(Vector<Double>, HypothesisType) Constructs a new Grubbs test for a single outlier.

GrubbsTest

Constructs a new Grubbs test for a single outlier.
C#
public GrubbsTest()

GrubbsTest(Vector<Double>)

Constructs a new Grubbs test for a single outlier.
C#
public GrubbsTest(
	Vector<double> sample
)

Parameters

sample  Vector<Double>
A vector.

Remarks

The Grubbs test requires that the sample be normally distributed.

GrubbsTest(Vector<Double>, HypothesisType)

Constructs a new Grubbs test for a single outlier.
C#
public GrubbsTest(
	Vector<double> sample,
	HypothesisType side
)

Parameters

sample  Vector<Double>
A vector.
side  HypothesisType
Specifies whether the test is two-sided or one-sided.

Remarks

The Grubbs test requires that the sample be normally distributed.

See Also