Nothing
def.exp = function(x, lambda = 0, normalize = FALSE){
if(normalize){
corr = (exp(mean(log(x))))^(lambda - 1)
} else {
corr = 1
}
if(lambda == 0){
xt = exp(x)/corr
} else {
xt = (corr*x*lambda + 1)^(1/lambda)
}
return(xt)
}
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.