R/FisherZ.R

###############################################
###The function "FisherZ" does fisher's Z-transformation on an estimator of X, X takes values in 0~1.
###after Fisher's Z transformation, Z is normally distributed
#############################################

FisherZ <-
function(x)
  {
    
    x <- as.numeric(x)
    Z <- 0.5*log((1+x)/(1-x))
    Z
  }

Try the DiagTest3Grp package in your browser

Any scripts or data that you put into this service are public.

DiagTest3Grp documentation built on April 14, 2017, 5:53 p.m.