THypothesisType Enumeration

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

NameDescription
htLeftTailedPerform one sided left tailed test. Acceptance region is [-INF,p0+p0(signif)].
htRightTailedPerform one sided right tailed test. Acceptance region is [p0+p0(signif),INF).
htTwoTailedPerform two sided test. Acceptance region is [p0-p0(signif),p0+p0(signif)).