Nothing
wmean <- function(x,w=rep(1,length(x)),na.rm=TRUE) {
if (na.rm) {
comp <- complete.cases(x,w)
x <- x[comp]
w <- w[comp]
}
sum(x*w)/sum(w)
}
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.