R/fisher_z2r.R

Defines functions fisher_z_to_r

Documented in fisher_z_to_r

#' Fisher Z Back Transformation
#' @description Back tranform Fisher's Z to correlations
#' @param z Fisher Z
#'
#' @return Correlation (s) (backtransformed)
#' @export
#'
#' @examples
#' fisher_z_to_r(0.5)
fisher_z_to_r <- function(z){
  r <- z2r(z)
  return(r)
}

Try the GGMnonreg package in your browser

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

GGMnonreg documentation built on April 8, 2021, 5:06 p.m.