Nothing
tukey_iqr_bounds <- function(y) {
q1 <- stats::quantile(y, 0.25)
q3 <- stats::quantile(y, 0.75)
iqr <- q3 - q1
lower.bound <- q1 - 1.5 * iqr
upper.bound <- q3 + 1.5 * iqr
return(c(lower.bound, upper.bound))
}
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.