R/st.err.R

Defines functions st.err

Documented in st.err

st.err <- function(x, na.rm = FALSE) {
  if(na.rm == TRUE){
    x <- na.omit(x)
  }
  sd(x)/sqrt(length(x))
}

Try the IsoCorr package in your browser

Any scripts or data that you put into this service are public.

IsoCorr documentation built on Jan. 8, 2021, 2:13 a.m.