Calculate lower 95 % confidence limit
lower95.Rd
Function with a short name to calculate 2.5th percentile
of a distribution. Calls stats::quantile(x)
,
but is shorter and is easier to use in calls to apply
family
of functions.
Examples
# Example usage
if (FALSE) { # \dontrun{
x <- rnorm(1e4, 0, 1)
lower95(x)
} # }