Learn R Programming

SNFtool (version 2.3.1)

standardNormalization: Standard Normalization

Description

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

Usage

standardNormalization(x)

Arguments

x

The unnormalized data.

Value

The data normalized.

Examples

Run this code
# NOT RUN {
## 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);
# }

Run the code above in your browser using DataLab