unique.networkfamily          package:deal          R Documentation

_M_a_k_e_s _a _n_e_t_w_o_r_k _f_a_m_i_l_y _u_n_i_q_u_e.

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

     Removes networks that are equal or equivalent to networks already
     in the network family.

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

     ## S3 method for class 'networkfamily':
     unique(x,incomparables=FALSE,equi=FALSE,timetrace=FALSE,epsilon=1e-12,...)

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

       x: an object of class 'networkfamily'.

incomparables: a logical, but has no effect.

    equi: a logical. If 'TRUE', also equivalent networks are thrown out
           (_i.e._ if their score is within 'epsilon' from another
          network).

timetrace: a logical. If 'TRUE', prints some timing information on the
          screen.

 epsilon: a numeric, which measures how close network scores are
          allowed to be from each other to be 'equivalent'.

     ...: further arguments (no effect)

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

     Susanne Gammelgaard Bttcher alma@math.aau.dk, 
      Claus Dethlefsen cld@rn.dk.

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

     Further information about *deal* can be found at:
      <URL: http://www.math.aau.dk/~dethlef/novo/deal>.

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

     data(rats)
     rats.nwf <- networkfamily(rats)
     rats.nwf2<- unique(getnetwork(rats.nwf),equi=TRUE)

