Nothing
wtdVar <- function(x) {
mn <- wtdMean(x)
n <- length(x)
sqdiff <- vector("list",n)
for(i in 1:n) {
sqdiff[[i]] <- (x[[i]] - mn)^2
attr(sqdiff[[i]],"weight") <- attr(x[[i]],"weight")
}
wtdMean(sqdiff)
}
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.