Nothing
"scores" <-
function (x, type = c("z","t","chisq","iqr","mad"), prob = NA, lim = NA)
{
if (is.matrix(x))
apply(x, 2, scores, type = type, prob = prob, lim = lim)
else if (is.data.frame(x))
as.data.frame(sapply(x, scores, type = type, prob = prob, lim = lim))
else {
n <- length(x)
s <- match.arg(type)
ty <- switch(s, z=0, t=1, chisq=2, iqr=3, mad=4)
if (ty == 0) {
res <- (x - mean(x))/sd(x)
if (is.na(prob)) res
else {
if (prob == 1) pnorm(res)
else if (prob == 0) abs(res) > (n-1)/sqrt(n)
else abs(res) > qnorm(prob)
}
}
else if (ty == 1) {
t <- (x - mean(x))/sd(x)
res <- (t*sqrt(n-2))/sqrt(n-1-t^2)
if (is.na(prob)) res
else {
if (prob == 1) pt(res,n-2)
else if (prob == 0) abs(res) > (n-1)/sqrt(n)
else abs(res) > qt(prob,n-2)
}
}
else if (ty == 2) {
res <- (x - mean(x))^2/var(x)
if (is.na(prob)) res
else {
if (prob == 1) pchisq(res,1)
else abs(res) > qchisq(prob,1)
}
}
else if (ty == 3) {
res <- x
Q1 <- quantile(x,0.25)
Q3 <- quantile(x,0.75)
res[x >= Q1 & res <= Q3] <- 0
res[x < Q1] <- (res[x < Q1]-Q1)/IQR(x)
res[x > Q3] <- (res[x > Q3]-Q3)/IQR(x)
if (is.na(lim)) res
else abs(res) > lim
}
else if (ty == 4) {
res <- (x - median(x))/mad(x)
if (is.na(prob)) res
else {
if (prob == 1) pnorm(res)
else if (prob == 0) abs(res) > (n-1)/sqrt(n)
else abs(res) > qnorm(prob)
}
}
}
}
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.