Nothing
"Normalize" <-
function(x)
{
uniformize <- function (x)
{
x <- rank(x,
na.last = "keep",
ties.method = "average")
n <- sum(!is.na(x))
x / (n + 1)
}
return( qnorm(uniformize(x), mean=mean(x, na.rm=TRUE), sd=sd(x, na.rm=TRUE) ) )
}
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.