Skip to contents

Compute lower limit for percentile confidence interval

Usage

lower_ci(x, CI = 0.97)

Arguments

x

values

CI

confidence interval, defaults to 0.97

Value

float

Examples

# default 97% CI
lower_ci(rnorm(100))
#>      1.5% 
#> -2.488154 

# alternative CI
lower_ci(rnorm(100), CI=0.89)
#>      5.5% 
#> -1.439953