logit(x, min = 0, max = 1)
inv.logit(x, min = 0, max = 1)
The generalized logit function takes values on [min, max] and transforms them to span [-Inf,Inf] it is defined as:
where
The generized inverse logit function provides the inverse
transformation:
where
logit
x <- seq(0,10, by=0.25)
xt <- logit(x, min=0, max=10)
cbind(x,xt)
y <- inv.logit(xt, min=0, max=10)
cbind(x,xt,y)
Run the code above in your browser using DataLab