TwoSampleTest Constructor

Definition

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

Overload List

TwoSampleTest(HypothesisType)

Constructs a new TwoSampleTest<T> object.
C#
protected TwoSampleTest(
	HypothesisType hypothesisType
)

Parameters

hypothesisType  HypothesisType
A HypothesisType value that indicates whether the test is upper or lower one-tailed or two-tailed.

TwoSampleTest(Vector<Double>, Vector<Double>, HypothesisType, Double, ContinuousDistribution)

Constructs a new TwoSampleTest<T> object.
C#
protected TwoSampleTest(
	Vector<double> sample1,
	Vector<double> sample2,
	HypothesisType hypothesisType,
	double significanceLevel,
	ContinuousDistribution distribution
)

Parameters

sample1  Vector<Double>
A Vector<T> representing the first sample.
sample2  Vector<Double>
A Vector<T> representing the second sample.
hypothesisType  HypothesisType
A HypothesisType value that specifies whether the test is one or two-tailed.
significanceLevel  Double
The significance level.
distribution  ContinuousDistribution
The ContinuousDistribution of the test statistic.

See Also