Nothing
favstats <-
function (x, na.rm = TRUE)
{
val <- c(
median(x, na.rm=na.rm),
IQR(x, na.rm=na.rm),
mean(x, na.rm = na.rm),
sd(x, na.rm = na.rm),
var(x, na.rm = na.rm)
)
names(val) <- c("median", "IQR", "mean", "sd", "var")
return(val)
}
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.