hexbin                package:flowViz                R Documentation

_F_a_s_t _h_e_x_a_g_o_n _b_i_n_n_i_n_g.

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

     Yet another hexagon binning routine - this one adapted from the
     scagnostics package.  This is very preliminary and may not be
     retained.

_U_s_a_g_e:

     hexbin(x, y, bins = 50)

_A_r_g_u_m_e_n_t_s:

       x: x values 

       y: y values 

    bins: The approximate number of bins, in the x direction. 

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

     This implementation maps x and y to the unit square and does the
     binning in that region.

_V_a_l_u_e:

     A list, with componentes 'counts', 'xbin' and 'ybin'.

_R_e_f_e_r_e_n_c_e_s:

     The scagnostics package.

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

      x = runif(100)
      y = runif(100)
      hb = hexbin(x,y)

