Calculates confidence intervals based upon a parametric distribution.
parametric_ci(point, se, alpha, alternative, qfun, pfun, ...)
The point estimate.
The standard error of the point estimate. If using a non-"normal" distribution this should be set to 1.
The type 1 error rate, should be a value between 0 and 1.
a character string specifying the alternative hypothesis, must be one of "two.sided" (default), "greater" or "less".
The quantile function for the assumed distribution i.e. qnorm
.
The CDF function for the assumed distribution i.e. pnorm
.
additional arguments passed on qfun
and pfun
i.e. df = 102
.