Nothing
#' @importFrom stats dnorm dlogis
wqmf.phisl <-
function (z, distribution)
{
switch(basic.distribution(distribution),
sev = { p <- z - exp(z) },
normal = { p <- logb(dnorm(z)) },
logistic = { p <- logb(dlogis(z)) },
lev = { p <- -z - exp(-z) },
{
stop(paste(distribution, "is not a recognized distribution"))
})
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.