| fisherz {psych} | R Documentation |
convert a correlation to a z score using the Fisher transformation.
fisherz(rho)
rho |
a Pearson r |
z value corresponding to r
Maintainer: William Revelle revelle@northwestern.edu
## Not run:
cors <- seq(-.9,.9,.1)
round(fisherz(cors),2)
## End(Not run)
## The function is currently defined as
function(rho) {0.5*log((1+rho)/(1-rho)) } #converts r to z