Nothing
#' @export
#' @import stats
eBellEW<-function(p, alpha, beta, theta,lambda)
{
fn = function(x) {
vBellEW(x, alpha, beta, theta, lambda)
}
ES = p
for (i in 1:length(p)) {
ES[i] = (1/p[i]) * integrate(fn, lower = 0, upper = p[i],
stop.on.error = FALSE)$value
}
return(ES)
}
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.