type THypothesisType = ( htTwoTailed, htRightTailed, htLeftTailed );
Defines one or two sided hypothesis testing.
Defines if hypothesis will be tested on closed interval (two sided) or open interval (one sided).
Values
| Name | Description |
|---|---|
| htLeftTailed | Perform one sided left tailed test. Acceptance region is [-INF,p0+p0(signif)]. |
| htRightTailed | Perform one sided right tailed test. Acceptance region is [p0+p0(signif),INF). |
| htTwoTailed | Perform two sided test. Acceptance region is [p0-p0(signif),p0+p0(signif)). |