Nothing
`spearman.brown` <-
function(r.xx,input=2, n.or.r = "n"){
if(n.or.r == "n"){
r.new <- input*r.xx/(1+(input-1)*r.xx)
out <- list(r.new=r.new)
}
if(n.or.r == "r"){
n.new <- input*(1-r.xx)/(r.xx*(1-input))
out <- list(n.new=n.new)
}
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.