Applies the rank based inverse normal transform (INT) to a numeric vector.
INT is indicated for continuous phenotypes lacking ties. See the vignette for
the mathematical definition of INT.
Usage
rankNormal(u, c = 3/8)
Arguments
u
Numeric vector.
c
Offset. Defaults to (3/8), correspond to the Blom transform.
# NOT RUN {# Draw from chi-1 distributiony = rchisq(n=1000,df=1);
# Rank normalizez = RNOmni::rankNormal(y);
# Plot density of transformed measurementplot(density(z));
# }