cum3 package:boot R Documentation _C_a_l_c_u_l_a_t_e _T_h_i_r_d _O_r_d_e_r _C_u_m_u_l_a_n_t_s _D_e_s_c_r_i_p_t_i_o_n: Calculates an estimate of the third cumulant, or skewness, of a vector. Also, if more than one vector is specified, a product-moment of order 3 is estimated. _U_s_a_g_e: cum3(a, b=a, c=a, unbiased=TRUE) _A_r_g_u_m_e_n_t_s: a: A vector of observations. b: Another vector of observations, if not supplied it is set to the value of 'a'. If supplied then it must be the same length as 'a'. c: Another vector of observations, if not supplied it is set to the value of 'a'. If supplied then it must be the same length as 'a'. unbiased: A logical value indicating whether the unbiased estimator should be used. _D_e_t_a_i_l_s: The unbiased estimator uses a multiplier of 'n/((n-1)*(n-2))' where 'n' is the sample size, if 'unbiased' is 'FALSE' then a multiplier of '1/n' is used. This is multiplied by 'sum((a-mean(a))*(b-mean(b))*(c-mean(c)))' to give the required estimate. _V_a_l_u_e: The required estimate.