sum                   package:base                   R Documentation

_S_u_m _o_f _V_e_c_t_o_r _E_l_e_m_e_n_t_s

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

     'sum' returns the sum of all the values present in its arguments.

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

     sum(..., na.rm = FALSE)

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

     ...: numeric or complex or logical vectors.

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

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

     This is a generic function: methods can be defined for it directly
     or via the 'Summary' group generic. For this to work properly, the
     arguments '...' should be unnamed, and dispatch is on the first
     argument.

     If 'na.rm' is 'FALSE' an 'NA' value in any of the arguments will
     cause a value of 'NA' to be returned, otherwise 'NA' values are
     ignored.

     Logical true values are regarded as one, false values as zero. For
     historical reasons, 'NULL' is accepted and treated as if it were
     'integer(0)'.

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

     The sum. If all of '...' are of type integer or logical, then the
     sum is integer, and in that case the result will be 'NA' (with a
     warning) if integer overflow occurs.  Otherwise it is a length-one
     numeric or complex vector.

     *NB:* the sum of an empty set is zero, by definition.

_S_4 _m_e_t_h_o_d_s:

     This is part of the S4 'Summary' group generic.  Methods for it
     must use the signature 'x, ..., na.rm'.

     'plotmath' for the use of 'sum' in plot annotation.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

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

     'colSums' for row and column sums.

