sd                   package:stats                   R Documentation

_S_t_a_n_d_a_r_d _D_e_v_i_a_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     This function computes the standard deviation of the values in
     'x'. If 'na.rm' is 'TRUE' then missing values are removed before
     computation proceeds. If 'x' is a matrix or a data frame, a vector
     of the standard deviation of the columns is returned.

_U_s_a_g_e:

     sd(x, na.rm = FALSE)

_A_r_g_u_m_e_n_t_s:

       x: a numeric vector, matrix or data frame. An object which is
          not a vector, matrix or data frame is coerced (if possible)
          by 'as.vector'.

   na.rm: logical. Should missing values be removed?

_D_e_t_a_i_l_s:

     Like 'var' this uses denominator n - 1.

     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'.

_S_e_e _A_l_s_o:

     'var' for its square, and 'mad', the most robust alternative.

_E_x_a_m_p_l_e_s:

     sd(1:2) ^ 2

