Nothing
"fun.moments" <-
function(x,normalise="N")
{
x<-na.omit(x)
a1 <- mean(x)
a2 <- sum((x - a1)^2)/length(x)
a3 <- mean((x - mean(x))^3)/(a2^(3/2))
a4 <- mean((x - mean(x))^4)/(a2^(4/2))
if (normalise == "Y") {
a4 <- a4 - 3
}
return(list("a1"=a1,"a2"=a2,"a3"=a3,"a4"=a4))
}
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.