This function computes the standard deviation of the values in
x
.
If na.rm
is TRUE
then missing values are removed before
computation proceeds.
sd(x, na.rm = FALSE)
a numeric vector or an R object which is coercible to one
by as.double(x)
.
logical. Should missing values be removed?
Like var
this uses denominator
The standard deviation of a zero-length vector (after removal of
NA
s if na.rm = TRUE
) is not defined and gives an error.
The standard deviation of a length-one vector is NA
.