R/SEM.R

Defines functions SEM

Documented in SEM

#' Compute standard error of the mean
#' 
#' @param x A numeric vector
#' @export

SEM <- function(x){
  return(sd(x)/sqrt(length(x)))
}
msxakk89/dat documentation built on Aug. 3, 2020, 6:39 p.m.