Nothing
hl.loc <- function(x, na.action=na.fail)
{
if (!is.vector(x)) stop("'x' must be a numeric vector")
x<-na.action(x)
if (!is.numeric(x)) stop("'x' must be a numeric vector")
sums<-pair.sum(as.matrix(x))
y.all<-c(x,sums/2)
res <- median(y.all)
return(res)
}
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.