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 BGGM package in your browser

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

BGGM documentation built on Aug. 20, 2021, 5:08 p.m.