Nothing
## File Name: fisher2cor.R
## File Version: 0.08
#*** back transform fisher correlations
fisher2cor <- function(z)
{
c1 <- ( exp(2*z) - 1 )/ ( exp(2*z) + 1 )
return(c1)
}
#*** derivative of fisher to cor
fisher2cor.D1 <- function(z, h=.001)
{
( fisher2cor(z+h) - fisher2cor(z) ) / h
}
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.