

prod {base}                                  R Documentation

_P_r_o_d_u_c_t _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_:

     `prod' returns the product of all the values present in
     its arguments.

_U_s_a_g_e_:

     prod(..., na.rm=TRUE)

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

     If `na.rm' is `FALSE' an `NA' value in any of the argu-
     ments will cause a value of `NA' to be returned, other-
     wise `NA' values are ignored.

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

     `sum', `cumprod', `cumsum'.

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

     print(prod(1:7)) == print(gamma(8))

