R/utils.R
Scaling.Rd
Scale and center data.
Scaling(matrix, verbose = FALSE)
Matrix to use.
Whether to display a process bar. Default is FALSE.
Returns a scaled and centered data.
{ data.use <- matrix(runif(100), 10) scaled.data <- Scaling(data.use) }