Nothing
## Transformation of a variable from the observation scale to the link scale
link <- function(x, type = c("cloglog", "log", "logit")){
switch(type,
logit = qlogis(x),
log = log(x),
cloglog = log(-log(1 - x)))
}
## Transformation of a variable from the link scale to the observation scale
invlink <- function(x, type = c("cloglog", "log", "logit")){
switch(type,
logit = plogis(x),
log = exp(x),
cloglog = 1 - exp( -exp(x)))
}
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.