inverse.logit = function( x ) {
# x should be the log odds ratio
oddsratio = exp(x)
prob = oddsratio / (1 + oddsratio )
return (prob)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.