data.normalization {CancerSubtypes} | R Documentation |
Conduct normalization for dataset.
data.normalization(Data, type = "feature_Median", log2 = FALSE)
Data |
A matrix representing the genomic data such as gene expression data, miRNA expression data. |
type |
A character value representing the normalization type. The optional values are shown below:
|
log2 |
A logical value. If TRUE, the data is transform as log2(x+1). This is commonly used for RNAseq data. |
The normalized data matrix.
data(GeneExp) result=data.normalization(GeneExp,type="feature_Median",log2=FALSE)