expo.scale
is a more elaborate, and complete, version of scale
. Several text options are available, but more importantly, the center and scale factors are always returned.
expo.scale(DATA, center = TRUE, scale = TRUE)
A data matrix that is scaled with the following attributes
(see scale
):
The center of the data. If no center is provided, all 0s will be returned.
The scale factor of the data. If no scale is provided, all 1s will be returned.
Data to center, scale, or both.
boolean, or (numeric) vector. If boolean or vector, it works just as scale
.
boolean, text, or (numeric) vector. If boolean or vector, it works just as scale
. The following text options are available: 'z': z-score normalization, 'sd': standard deviation normalization, 'rms': root mean square normalization, 'ss1': sum of squares (of columns) equals 1 normalization.
Derek Beaton