R/RowCV.R

Defines functions RowCV

RowCV <- function(x) {
  sqrt((rowSums(((x - rowMeans(x))^2)/(dim(x)[2] - 1)))/(rowMeans(x)+1e-10) * 100)
}
ASharmaML/nmf-gene documentation built on May 14, 2019, 8:57 a.m.