WilcoxonSignedRankTest.Reject Method

Definition

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

Overload List

Reject() Returns whether the null hypothesis is rejected using the default significance level.
Reject(Double) Returns whether the null hypothesis is rejected using the specified significance level.

Reject(Double)

Returns whether the null hypothesis is rejected using the specified significance level.
C#
public override bool Reject(
	double significanceLevel
)

Parameters

significanceLevel  Double
The upper bound of the p-value at which to reject the hypothesis.

Return Value

Boolean
true if the null hypothesis is rejected; otherwise false.

Remarks

Uses the directional p-value for the configured HypothesisType, instead of using the base Reject(Double) critical-value path.

Exceptions

ArgumentOutOfRangeException

significanceLevel is less than 0 or greater than 1.

See Also