View source: R/normalizeData.R
normalizeData | R Documentation |
Normalize data to have mean zero and std 1
normalizeData(
dataset,
enable_normalization = TRUE,
column_sum_normalization = TRUE,
nonnegative_normalization = FALSE
)
dataset |
The input list of data sets matrix |
enable_normalization |
An argument to decide whether to use normalizaiton or not, default is TRUE |
column_sum_normalization |
An argument to decide whether to use column sum normalization or not, default it TRUE |
nonnegative_normalization |
An argument to decide wehther it is nonnegative matrix factorization based or not, default is FALSE |
dataset = list(
matrix(runif(5000, 1, 2), nrow = 100, ncol = 50),
matrix(runif(5000, 1, 2), nrow = 100, ncol = 50)
)
normalizeData(dataset)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.