| logit.inv | R Documentation | 
Backtransforms logit transformed data to the <0,1> scale
logit.inv(x, min = 0, max = 1)
| x | any value | 
| min | lower boundary of backtransformed value | 
| max | upper boundary of backtransformed value | 
logit(x) backtransformed to <0,1>
logit
myVector = runif(n = 1000, min = 0.001,max = 0.999)
myVector.logit = logit(myVector)
par(mfrow = c(1,3))
hist(myVector)
hist(myVector.logit)
hist(logit.inv(myVector.logit))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.