View source: R/Transform_Functions.R
Fisher_z2r | R Documentation |
This function uses Fisher's z to r transformation to convert a z-score into a correlation.
Fisher_z2r(z)
z |
A numeric value (or vector) for the z-score(s). |
=============================================================================
This function uses Fisher's z to r transformation to convert a correlation into a z-score. Missing values of z result in NA values. This is also called the hyperbolic tangent transformation (tanh), so this is a wrapper for the base::tanh() function.
A numeric value (or vector) for the correlation coefficient(s).
To be added later.
tanh
for the base function used in this
function. Fisher_r2z
for the inverse transformation that
converts r back to z.
Fisher_z2r(.3)
Fisher_z2r(c(-Inf, -2.64, NA, 0, 0.55, 2.64, Inf))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.