Scale and center data.

Scaling(matrix, verbose = FALSE)

Arguments

matrix

Matrix to use.

verbose

Whether to display a process bar. Default is FALSE.

Value

Returns a scaled and centered data.

Examples

{
data.use <- matrix(runif(100), 10)
scaled.data <- Scaling(data.use)
}