Nothing
#standard error
se <- function(x) {
if(is.matrix(x)){
se <- sqrt(diag(var(x, na.rm = TRUE))/colSums(!is.na(x)| !is.infinite(x)))
} else {se <- sqrt(var(x, na.rm = TRUE)/sum(!is.na(x) | !is.infinite(x)))}
se
}
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.