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.

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

_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

