R/rownorm.R

Defines functions rownorm

Documented in rownorm

rownorm <- function(x) {
    dat.z <- apply(x, 1, function(y) (y - mean(y, na.rm = T))/sd(y, 
        na.rm = T))
    dat.z <- t(dat.z)
    dat.z
}
 

Try the gage package in your browser

Any scripts or data that you put into this service are public.

gage documentation built on Dec. 13, 2020, 2:01 a.m.