Nothing
logit <- function(x) {
log(x / (1 - x))
}
expit <- function(x) {
1 / (1 + exp(-x))
}
log_logit <- function(x, method) {
if (method == "binomial") {
logit(x)
} else if (method == "poisson") {
log(x)
}
}
exp_expit <- function(x, method) {
if (method == "binomial") {
expit(x)
} else if (method == "poisson") {
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.