Nothing
stdz <- function(x, weight=NULL){
if(is.null(weight)){
weight <- rep(1, length(x))
}
x <- x-wtd.mean(x, weight, na.rm=TRUE)
x <- x/sqrt(wtd.var(x, weight, na.rm=TRUE))
x
}
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.