z
From tadaatoolbox v0.16.0
by Lukas Burk
Convert numeric vector to z-values
A trivial scaling function. You might as well use base::scale, which allows
arbitrary centers and scales, but returns a matrix
by default.
Usage
z(x)
Arguments
- x
A numeric vector.
Value
A vector of z-values of the same length as x
.
Examples
# NOT RUN {
x <- rnorm(500, mean = 10, sd = 5)
z_vals <- z(x)
round(c(mean = mean(z_vals), sd = sd(z_vals)), 2)
# }
Community examples
Looks like there are no examples yet.