removedEdges            package:Rgraphviz            R Documentation

_A _F_u_n_c_t_i_o_n _T_o _L_i_s_t _R_e_m_o_v_e_d _E_d_g_e_s

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

     This function can be used to retrieve a numerical vector which
     will describe which edges in a graph would be removed if
     'recipEdges' is set to 'combined' during plotting.

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

     removedEdges(graph)

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

   graph: An object of class 'graph' or 'Ragraph', the graph to perform
          this operation on

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

     This function will simply detect which (if any) edges in a graph
     would be removed during combination of reciprocated edges.

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

     A numerical vector, where the values correspond to removed edges.

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

     Jeff Gentry

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

     'edgeNames', 'agopen', 'buildEdgeList'

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

     set.seed(123)
     V <- letters[1:10]
     M <- 1:4
     g1 <- randomGraph(V, M, .2)
     removedEdges(g1)

