Nothing
"describe.bplot" <-
function (temp, style = "tukey", outlier = TRUE)
{
obj <- list()
temp <- temp[!is.na(temp)]
obj$N <- length(temp)
obj$out <- numeric(0)
obj$style <- style
if (obj$N < 1) {
obj$range <- NA
return(obj)
}
obj$range <- range(temp)
if (style == "quantile") {
quant <- c(0.05, 0.25, 0.5, 0.75, 0.95)
out$bb <- quantile(temp, quant)
if ((length(temp) > 5) & outlier) {
obj$out <- temp[(temp < bb[1]) | (temp > bb[5])]
}
else obj$out <- temp
}
if (style == "tukey") {
quant <- c(0.05, 0.25, 0.5, 0.75, 0.95)
obj$bb <- bb <- quantile(temp, quant)
iqr <- bb[4] - bb[2]
bb[1] <- min(temp[temp >= bb[2] - 1.5 * iqr])
bb[5] <- max(temp[temp <= bb[4] + 1.5 * iqr])
obj$bb <- bb
if ((length(temp) > 5) & outlier) {
obj$out <- temp[(temp < bb[2] - 3 * iqr) | (temp >
bb[4] + 3 * iqr)]
}
else obj$out <- temp
}
obj
}
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.