zero.ci {meboot}R Documentation

Get Confidence Interval Around Zero

Description

Function to get two sided confidence interval around zero as the true value. Confidence interval is adjusted so that it covers the true zero (1-'confl')*100 times. Symmetry is not assumed.

Usage

    zero.ci (x, confl=0.05)
  

Arguments

x

a vector of data.

confl

confidence level.

Value

bnlo

count of number of items below lower limit.

bnup

count of number of items above upper limit.

lolim

lower limit of the confidence interval.

uplim

upper limit of the confidence interval.

Examples

    x <- runif(25, 0, 1)
    zero.ci(x)
  

[Package meboot version 1.4-9.4 Index]