Nothing
#' @export
#' @import stats
vBellEE<-function (p, alpha, beta, lambda, log.p = FALSE, lower.tail = TRUE)
{
if (log.p == TRUE)
p = exp(p)
if (lower.tail == FALSE)
p = 1 - p
t=-1/lambda*log(1-((log(1-p[p >= 0 & p <= 1]*(1-(exp(-exp(lambda)+1)))))/(-exp(lambda))))
VaR=(-1/alpha*log(1-(t)^(1/beta)))
return(VaR)
}
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.