
Last chance! 50% off unlimited learning
Sale ends in
This function revert a Matrix-like object that is scaled or centered via scale.default
to data with the original scale/center.
unscale(x)
numeric matrix(like object).
a matrix that are re-centered or un-scaled, based on the value of attributes "scaled:center" and "scaled:scale" of x
. If neither of those attributes is specified, x
is returned.
# NOT RUN {
require(stats)
x <- matrix(1:10, ncol=2)
unscale(z <- scale(x))
#maybe useful for truncating
trunc <- 1
z[abs(z) > trunc] <- sign(z[abs(z) > trunc])*trunc
unscale(z)
# }
Run the code above in your browser using DataLab