R/se.R

Defines functions se

Documented in se

#' Calculates standard error of a numeric vector
#' @export
#' @title Standard error
#' @param x a numeric vector.

se <- function(x) {sqrt(stats::var(x)/length(x))}
ksmiff33/FluxSynthU documentation built on Dec. 15, 2020, 10:29 p.m.