Nothing
pnormMix <-
function (q, mean1 = 0, sd1 = 1, mean2 = 0, sd2 = 1, p.mix = 0.5)
{
names.q <- names(q)
arg.mat <- cbind.no.warn(q = as.vector(q), mean1 = as.vector(mean1),
sd1 = as.vector(sd1), mean2 = as.vector(mean2), sd2 = as.vector(sd2),
p.mix = as.vector(p.mix))
for (i in c("q", "mean1", "sd1", "mean2", "sd2", "p.mix")) assign(i,
arg.mat[, i])
na.index <- is_na_matrix(arg.mat)
if (all(na.index))
p <- rep(NA, length(q))
else {
if (any(c(sd1[!na.index], sd2[!na.index]) < .Machine$double.eps))
stop("All values of 'sd1' and 'sd2' must be positive.")
if (any(p.mix[!na.index] < 0 | p.mix[!na.index] > 1))
stop("All values of 'p.mix' must be between 0 and 1.")
p <- (1 - p.mix) * pnorm(q, mean1, sd1) + p.mix * pnorm(q,
mean2, sd2)
}
if (!is.null(names.q))
names(p) <- rep(names.q, length = length(p))
else names(p) <- NULL
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.