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