Nothing
#' Fisher Z Transformation
#'
#' @description Tranform correlations to Fisher's Z
#' @param r correlation (can be a vector)
#'
#' @return Fisher Z transformed correlation(s)
#' @export
#'
#' @examples
#' fisher_r_to_z(0.5)
fisher_r_to_z <- function(r){
z <- fisher_z(r)
return(z)
}
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.