freq.array package:boot R Documentation _B_o_o_t_s_t_r_a_p _F_r_e_q_u_e_n_c_y _A_r_r_a_y_s _D_e_s_c_r_i_p_t_i_o_n: Take a matrix of indices for nonparametric bootstrap resamples and return the frequencies of the original observations in each resample. _U_s_a_g_e: freq.array(i.array) _A_r_g_u_m_e_n_t_s: i.array: This will be an matrix of integers between 1 and n, where n is the number of observations in a data set. The matrix will have n columns and R rows where R is the number of bootstrap resamples. Such matrices are found by 'boot' when doing nonparametric bootstraps. They can also be found after a bootstrap has been run through the function 'boot.array'. _V_a_l_u_e: A matrix of the same dimensions as the input matrix. Each row of the matrix corresponds to a single bootstrap resample. Each column of the matrix corresponds to one of the original observations and specifies its frequency in each bootstrap resample. Thus the first column tells us how often the first observation appeared in each bootstrap resample. Such frequency arrays are often useful for diagnostic purposes such as the jackknife-after-bootstrap plot. They are also necessary for the regression estimates of empirical influence values and for finding importance sampling weights. _S_e_e _A_l_s_o: 'boot.array'