k3.linear package:boot R Documentation _L_i_n_e_a_r _S_k_e_w_n_e_s_s _E_s_t_i_m_a_t_e _D_e_s_c_r_i_p_t_i_o_n: Estimates the skewness of a statistic from its empirical influence values. _U_s_a_g_e: k3.linear(L, strata=NULL) _A_r_g_u_m_e_n_t_s: L: Vector of the empirical influence values of a statistic. These will usually be calculated by a call to 'empinf'. strata: A numeric vector or factor specifying which observations (and hence which components of 'L') come from which strata. _V_a_l_u_e: The skewness estimate calculated from 'L'. _R_e_f_e_r_e_n_c_e_s: Davison, A. C. and Hinkley, D. V. (1997) _Bootstrap Methods and Their Application_. Cambridge University Press. _S_e_e _A_l_s_o: 'empinf', 'linear.approx', 'var.linear' _E_x_a_m_p_l_e_s: # To estimate the skewness of the ratio of means for the city data. ratio <- function(d,w) sum(d$x * w)/sum(d$u * w) k3.linear(empinf(data=city,statistic=ratio))