R/rvhyper.R

Defines functions rvhyper

# ========================================================================
# rvhyper  -  hypergeometric rvs
# ========================================================================

#' @importFrom stats rhyper
rvhyper <- function(nn=1, m, n, k) {
  warning("NOT YET READY")
  attr(nn, "n.name") <- "nn"
  rvvapply(rhyper, n.=nn, m=m, n=n, k=k)
}

Try the rv package in your browser

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

rv documentation built on March 18, 2022, 5:55 p.m.