normalizeData: Data Normalization

Description Usage Arguments Examples

View source: R/normalizeData.R

Description

Normalize data to have mean zero and std 1

Usage

1
normalizeData(dataset, enable_normalization = TRUE)

Arguments

dataset

The input list of data sets matrix

enable_normalization

An argument to decide whether to use normalizaiton or not, default is TRUE

Examples

1
2
3
4
5
dataset = list(
matrix(runif(5000, 1, 2), nrow = 100, ncol = 50),
matrix(runif(5000, 1, 2), nrow = 100, ncol = 50)
)
normalizeData(dataset, TRUE)

CHuanSite/PJD documentation built on Oct. 26, 2021, 1 p.m.