HypothesisTest Constructor

Definition

Namespace: Numerics.NET.Statistics.Tests
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

HypothesisTest(HypothesisType)

Constructs a new HypothesisTest object.
C#
protected HypothesisTest(
	HypothesisType hypothesisType
)

Parameters

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

HypothesisTest(HypothesisType, Double, ContinuousDistribution)

Constructs a new HypothesisTest object.
C#
protected HypothesisTest(
	HypothesisType hypothesisType,
	double significanceLevel,
	ContinuousDistribution? distribution
)

Parameters

hypothesisType  HypothesisType
A HypothesisType value that indicates whether the test is upper or lower one-tailed or two-tailed.
significanceLevel  Double
A Double value that specifies the significance level to test against.
distribution  ContinuousDistribution
A ContinuousDistribution object that represents the distribution of the test statistic.

See Also