Nothing
ddist <- function(x, par, dist = "exp") {
if (dist == "exp") {
return(dexp(x, rate = par[, 1]))
}
if (dist == "gamma") {
return(dgamma(x, shape = par[, 1], rate = par[, 2]))
}
if (dist == "weibull") {
return(dweibull(x, shape = par[, 2], scale = par[, 1]))
}
if (dist == "loglog") {
return(dloglog(x, lambda = par[, 1], gamma = par[, 2]))
}
if (dist == "lognormal") {
return(dlnorm(x, meanlog = par[, 1], sdlog = par[, 2]))
}
if (dist == "gengamma") {
return(dggamma(x, a = 1/par[, 1], b = par[, 2], k = par[, 3]))
}
}
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.