Applies the rank based inverse normal transform (INT) to a numeric vector.
INT is indicated for continuous outcomes. See the vignette for the
definition of INT.
Usage
rankNormal(u, k = 3/8)
Arguments
u
Numeric vector.
k
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));
# }