normalize | R Documentation |
This function normalizes the 2WR matrix (or any 2D matrix) according to the species (rows) or to the genes (columns), by dividing each row or each column by its median.
normalize(mat, what = "none")
mat |
A matrix |
what |
Character string indicating whether the matrix should be normalized and how. If what="none", the matrix is not normalized (the default), if what="species", the matrix is normalized so that the difference between species is increased, and if what="genes", the matrix is normalized so that the difference between genes is increased. Normalization consists in dividing either each row or each columns by its median. |
A normalized matrix
# random matrix
x<-matrix(rnorm(270), nrow=9, ncol=14)
# normalize by row
x1<-normalize(x, "genes")
# normalize by column
x2<-normalize(x, "species")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.