rowNorm {GenomicSuperSignature} | R Documentation |
z-score each row of the data
rowNorm(x)
x |
A gene-expression matrix with genes in rows and samples in columns |
a matrix with each row mean centered and scaled by rowwise sd
https://github.com/shbrief/PLIER/blob/master/R/Allfuncs.R
x = matrix(rnorm(100),nc=10) y = rowNorm(x) apply(y,1,mean)