R/nBootstrap-z1-dot.R

Defines functions .Z1

#' z1
#'
#' @author Ivan Jacob Agaloos Pesigan
#'
#' @param probs Numeric vector.
#'   Vector of probabilities corresponding to alpha level.
#'
#' @return Returns a numeric vector.
#'
#' @family Confidence Intervals Functions
#' @keywords nBootstrap ci internal
#' @noRd
.Z1 <- function(probs) {
  return(
    stats::qnorm(p = probs)
  )
}

Try the betaNB package in your browser

Any scripts or data that you put into this service are public.

betaNB documentation built on April 12, 2025, 9:13 a.m.