Description Usage Arguments Value Author(s) Examples
View source: R/standardNormalization.R
Normalize each column of the input data to have mean 0 and standard deviation 1.
1 |
x |
The unnormalized data. |
The data normalized.
Dr. Anna Goldenberg, Bo Wang, Aziz Mezlini, Feyyaz Demir
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);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.