R/z_score.r

#Z score normalisation
z_score <- function (x,...)
 {
  a <- pnorm(x)
  print(a)
 }

#examples
#mtcars <- as.matrix(mtcars)
#z_score(mtcars)
SanthoshKumarKarthikeyan/skkr documentation built on May 26, 2019, 10:34 a.m.