powered by
Sum of squares block weighting: allows to scale blocks of variables, but keeping the relative weights of the variables inside a block.
blockNorm(X, targetnorm = 1)
a list with components Xscaled, the scaled matrix and f, the scaling factor
Xscaled
f
a numeric matrix to transform (optionally a data frame that can be coerced to a numerical matrix).
desired sum of squares for a block of variables (default = 1)
Antoine Stevens
The function computes a scaling factor, which, multiplied by the input matrix, produces a matrix with a pre--determined sum of squares.
Eriksson, L., Johansson, E., Kettaneh, N., Trygg, J., Wikstrom, C., and Wold, S., 2006. Multi- and Megavariate Data Analysis. MKS Umetrics AB.
blockScale, standardNormalVariate, detrend
blockScale
standardNormalVariate
detrend
X <- matrix(rnorm(100), ncol = 10) # Block normalize to sum of square equals to 1 res <- blockNorm(X, targetnorm = 1) sum(res$Xscaled^2) # check
Run the code above in your browser using DataLab