R/se.R

Defines functions se

Documented in se

#' Miscellaneous helpers
#'
#' Standard error of the mean (SEM)
#' @export

se <- function(v){
	sqrt(var(v,na.rm=T))/sqrt(length(v))
}
mattelisi/mlisi documentation built on Oct. 13, 2019, 5:59 p.m.