R/helpStats.R

Defines functions se

#function to calcuate standard error
se <- function(x,na.rm){
  sd(x,na.rm = na.rm)/sqrt(length(x))
}
scientific-computing-solutions/sibyl documentation built on May 21, 2019, 8:40 a.m.