rowSds                  package:vsn                  R Documentation

_R_o_w _s_t_a_n_d_a_r_d _d_e_v_i_a_t_i_o_n _o_f _a _n_u_m_e_r_i_c _a_r_r_a_y

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

     Row standard deviation of a numeric array

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

     rowSds(x, ...)

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

       x: An array of two or more dimensions, containing numeric,
          complex, integer or logical values, or a numeric data frame.

     ...: Further arguments that get passed on to 'rowMeans' and
          'rowSums'.

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

     This a convenience function, the main work is done in 'rowMeans'
     and 'rowSums'. See the function definition, it is very simple.

_V_a_l_u_e:

     A numeric or complex array of suitable size, or a vector if the
     result is one-dimensional.  The `dimnames' (or `names' for a
     vector result) are taken from the original array.

_A_u_t_h_o_r(_s):

     Wolfgang Huber <URL: http://www.ebi.ac.uk/huber>

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

     'rowMeans' and 'rowSums'

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

        a = matrix(rnorm(1e4), nrow=10)
        rowSds(a)

