Returns whether the null hypothesis is rejected using the specified significance level.
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public bool Reject(
double significanceLevel
)
Public Function Reject (
significanceLevel As Double
) As Boolean
public:
bool Reject(
double significanceLevel
)
member Reject :
significanceLevel : float -> bool
Parameters
- significanceLevel
- Type: SystemDouble
The upper bound of the p-value at which to reject the hypothesis.
Return Value
Type:
Boolean if the null hypothesis is rejected; otherwise
.
The null hypothesis is rejected if the probability of obtaining the test Statistic
is less than significanceLevel.
significanceLevel must be a value between 0 and 1. Common values are
0.01, 0.05, and 0.1.
Reference