Learn R Programming

corregp (version 2.0.2)

ci: Confidence Interval

Description

This is the basic function for computing a confidence interval on the basis of a sample of data values.

Usage

ci(x, cl = 0.95, nq = TRUE)

Arguments

x

A numeric vector.

cl

The confidence level for the confidence interval. Defaults to 0.95.

nq

Logical specifying whether to use a normal quantile (i.e. apply qnorm) in the computation of the confidence interval. Defaults to TRUE. If FALSE, then the confidence interval is computed directly with the quantile function.

Value

A vector with two components Lower and Upper giving the lower and upper confidence limits respectively.

See Also

ciplot.corregp, anova.corregp, agplot.corregp, confint.

Examples

Run this code
# NOT RUN {
data(HairEye)
haireye.crg <- corregp(Eye ~ Hair * Sex, data = HairEye, b = 3000)
ci(haireye.crg$conf$eigen[, 1])
ci(haireye.crg$conf$eigen[, 2])
# }

Run the code above in your browser using DataLab