Nothing
#------------------------------
# TUKEY BIWEIGHT
#------------------------------
# Robust average of vector x with missing values ignored in the calculation.
tukey <- function(x, c=5, epsilon=1e-4, na.rm=TRUE) {
x <- x[!is.na(x)]
return <- tukey.biweight(x, c=c, epsilon=epsilon)
}
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.