R/rrgumbel.R

#' @name ReversalGumbel
#' @examples
#' rprgumbel(5, 3, 4)
#' @export
rrgumbel = function(n, mu= 0, sigma = 1){
  n = runif(n)
  x = qrgumbel(n, mu, sigma)
  return(x)
}

Try the powdist package in your browser

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

powdist documentation built on May 1, 2019, 10:11 p.m.