R/st_error.R

Defines functions st_error

Documented in st_error

#' Calculate standard error of Large sample
#'
#' @param vect numerical vector
#' @importFrom stats sd
#'
#' @return standard error
#' @export
#'
#' @examples
#' st_error(rnorm(50))
st_error <- function(vect){
  sd(vect)/sqrt(length(vect))
}
ldbraunholtz/mylilpackage documentation built on Jan. 8, 2020, 12:06 a.m.