Nothing
      #' @name ReversalGumbel
#' @examples
#' prgumbel(1, 3, 4)
#' @export
prgumbel <- function(q, mu = 0, sigma = 1, lower.tail = TRUE, log.p = FALSE){
  p = pGU((q-mu)/sigma)
  if (lower.tail == FALSE) {
    p = 1 - p
  }
  if (log.p == TRUE) {
    p = log(p)
  }
  return(p)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.