scores.normalization | R Documentation |
Normalize a score matrix w.r.t. max normalization (maxnorm
) or quantile normalization (qnorm
)
scores.normalization(norm.type = "maxnorm", S)
norm.type |
can be one of the following two values:
|
S |
A named flat score matrix with examples on rows and classes on columns. |
To apply the quantile normalization the preprocessCore package must be properly installed.
The matrix of the scores flat normalized w.r.t. maxnorm
or qnorm
.
data(scores); norm.types <- c("maxnorm","qnorm"); for(norm.type in norm.types){ scores.normalization(norm.type=norm.type, S=S); }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.