st.err: Standard Error

Description Usage Arguments Examples

View source: R/st.err.R

Description

This function computes the standard error of the values in x. If na.rm is TRUE then missing values are removed before computation proceeds.

Usage

1
st.err(x, na.rm = FALSE)

Arguments

x

A numeric vector or an R object which is coercible to one.

na.rm

A logical value indicating whether NA values should be stripped before the computation proceeds.

Examples

1
2
3
4
5
6
7
## 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)

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

Related to st.err in IsoCorr...