

_T_a_b_u_l_a_t_i_o_n _f_o_r _V_e_c_t_o_r_s

     tabulate(bin, nbin=max(bin))

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

     `tabulate' takes the integer valued vector `bin' and
     counts the number of times each integer occurs in it.
     `tabulate' is used as the basis of the `table' func-
     tion.

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

     `factor', `table'.

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

     tabulate(c(2,3,5))
     tabulate(c(2,3,3,5), nb = 10)

     tabulate(c(2,3,5))
     tabulate(c(2,3,3,5), nb = 10)

