Nothing
      p2minpp <- function(p) {
    ## convert frequentist p-value (< 0.37) into lower
    ## bound of posterior probability of H0 under an
    ## equal odds prior see SellkeBayariBerger2001
    if (p >= 0.37) 
        stop("sorry, this conversion only works for p < 0.37")
    return((1 + (-exp(1) * p * log(p))^(-1))^(-1))
}
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.