Nothing
#' @rdname U-utils
#' @export
pU <- function(u, beta, distname, use.mean.variance = TRUE) {
check_distname(distname)
names(beta) <- get_beta_names(distname)
check_beta(beta, distname)
sigma.x <- beta2tau(beta, distname,
use.mean.variance = use.mean.variance)["sigma_x"]
switch(distname,
cauchy = {
FU <- function(u) pcauchy(u)
},
chisq = {
FU <- function(u) pchisq(u * sigma.x, df = beta)
},
exp = {
FU <- function(u) pexp(u)
},
"f" = {
FU <- function(u) pf(u * sigma.x, beta[1], beta[2])
},
gamma = {
FU <- function(u) pgamma(u * sigma.x, shape = beta["shape"], scale = beta["scale"])
},
laplace = {
#TODO
},
normal = {
FU <- function(u) pnorm(u)
},
t = {
ss <- sigma.x / beta["scale"]
FU <- function(u) pt(u * ss, df = beta["df"])
},
unif = {
FU <- function(u) punif(u, -sqrt(3), sqrt(3))
},
weibull = {
FU <- function(u) pweibull(u * sigma.x, shape = beta["shape"], scale = beta["scale"])
}
)
F.u <- FU(u)
names(F.u) <- names(u)
return(F.u)
}
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.