powered by
This function computes the standard error of the values in x. If na.rm is TRUE then missing values are removed before computation proceeds.
st.err(x, na.rm = FALSE)
A numeric vector or an R object which is coercible to one.
A logical value indicating whether NA values should be stripped before the computation proceeds.
# NOT RUN { ## Example 1 x <- c(5.2,6,5.5,4.1,8) st.err(x) ## Example 2 x <- c(5.2,6,NA,4.1,8,NA) st.err(x, na.rm = TRUE) # }
Run the code above in your browser using DataLab