Gets the significance level used to test the null hypothesis.

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property SignificanceLevel As Double
C#
public double SignificanceLevel { get; set; }
C++
public:
double SignificanceLevel {
	double get ();
	void set (double value);
}

Value

The significance level used to test the null hypothesis.

Remarks

This property is used by the Reject(), GetUpperCriticalValue(), and GetLowerCriticalValue() methods.

The default value is 0.05.

Exceptions

ExceptionCondition
ArgumentOutOfRangeException The new value is less than 0 or greater than 1.

See Also