normalize {OpenRepGrid} | R Documentation |
Normalize rows or columns by its standard deviation.
Description
Normalize rows or columns by its standard deviation.
Usage
normalize(x, normalize = 0, ...)
Arguments
x |
|
normalize |
A numeric value indicating along what direction (rows, columns)
to normalize by standard deviations. |
... |
Not evaluated. |
Value
Not yet defined TODO!
Examples
x <- matrix(sample(1:5, 20, rep = TRUE), 4)
normalize(x, 1) # normalizing rows
normalize(x, 2) # normalizing columns
[Package OpenRepGrid version 0.1.15 Index]