Nothing
min_r <- function(p1,p2){
x <- max(p1,p2)
y <- min(p1,p2)
beta <- ifelse(x+y <= 1, 1/2, -1/2)
mr <- -((x*y)/((1-x)*(1-y)))^beta
out <- ifelse(mr < -1, -1, mr)
out
}
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.