ci: Confidence interval structure

Description Usage Arguments Value Examples

View source: R/ci.R

Description

Create a confidence-interval object.

Usage

1
ci(estimate, lower, upper, confidence = 0.95, ...)

Arguments

estimate

The Estimate

lower

Lower bound

upper

Upper bound.

confidence

confidence level

...

other information such as

Value

A confidence-interval object.

Examples

1
2
3
4
5
6
x <- ci(est=0, low=-1, upp=1)
format(x)
format(x, span='---')

y <- ci(1, 0, 2, span=',')
c(x,y)

cursory documentation built on Aug. 22, 2019, 9:03 a.m.