separateExptBySize         package:ppiStats         R Documentation

_A _f_u_n_c_t_i_o_n _t_o _p_a_r_t_i_t_i_o_n _e_x_p_e_r_i_m_e_n_t_s _i_n _u_s_e_r _d_e_f_i_n_e_d _s_m_a_l_l, _m_e_d_i_u_m, _l_a_r_g_e
_s_c_a_l_e _e_x_p_e_r_i_m_e_n_t_s

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

     This function partitions protein interaction data into one of
     three classes defined by boundaries supplied by the users.

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

     separateExptBySize(listOfGraphs, bound1, bound2)

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

listOfGraphs: A list containing graphNEL objects to be sorted by the
          number of edges

  bound1: An integer. The strict upper bound for the small scale
          experiments and the lower bound for the medium scale
          experiments.

  bound2: An integer. The upper bound for the medium scale experiments,
          and the  strict lower bound for the large scale experiments.

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

     A function to partition graphs based on the number of edges.

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

     A list: 

   small: A list of graph objects with the number of edges in each
          graph less than bound1.

  medium: A list of graph objects with the number of edges in each
          graph of a value between that of bound1 and bound2.

   large: A list of graph objects with the number of edges in each
          graph greater than bound2.

_A_u_t_h_o_r(_s):

     T. Chiang

