Gets the upper critical value for the test statistic at the specified significance level.
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public double GetUpperCriticalValue(
double significanceLevel
)
Public Function GetUpperCriticalValue (
significanceLevel As Double
) As Double
public:
double GetUpperCriticalValue(
double significanceLevel
)
member GetUpperCriticalValue :
significanceLevel : float -> float
Parameters
- significanceLevel
- Type: SystemDouble
The significance level.
Return Value
Type:
DoubleThe upper value of the test statistic for the current significance level.
The upper critical value is the largest value of the test Statistic
for which the null hypothesis is not rejected.
This method is only available for tests with HypothesisTypeTwoTailed and OneTailedUpper.
significanceLevel must be a value between 0 and 1. Common values are
0.01, 0.05, and 0.1.
Reference