standardNormalization: Standard Normalization

Description Usage Arguments Value Author(s) Examples

View source: R/standardNormalization.R

Description

Normalize each column of the input data to have mean 0 and standard deviation 1.

Usage

1

Arguments

x

The unnormalized data.

Value

The data normalized.

Author(s)

Dr. Anna Goldenberg, Bo Wang, Aziz Mezlini, Feyyaz Demir

Examples

1
2
3
4
5
6
7
8
9
## Data1 is of size n x d_1, 
## where n is the number of patients, d_1 is the number of genes, 
## Data2 is of size n x d_2, 
## where n is the number of patients, d_2 is the number of methylation
data(Data1)
data(Data2)

Data1 = standardNormalization(Data1);
Data2 = standardNormalization(Data2);

SNFtool documentation built on June 11, 2021, 9:06 a.m.