R/rpexpow.R

#' @name PowerExponentialPower
#' @examples
#' rpexpow(5, 2, 3, 4, 1)
#' @export
rpexpow = function(n, lambda = 1, mu= 0, sigma = 1, k = 0){
  n = runif(n)
  x = qpexpow(n, lambda, mu, sigma, k)
  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.