createSummaryTables         package:ppiStats         R Documentation

_A _f_u_n_c_t_i_o_n _t_o _c_r_e_a_t_e _s_u_m_m_a_r_y _s_t_a_t_i_s_t_i_c _t_a_b_l_e_s _f_o_r _d_i_r_e_c_t_e_d _g_r_a_p_h_s

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

     This function takes a list of directed graph objects and creates a
     summary table based on the directed connectivity.

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

     createSummaryTables(dataGraphs)

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

dataGraphs: A named list of directed graphNELs

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

     A dataframe with the rows indexed by the names of each directed
     graphNEL  and the columns indexed by viable baits (VB), viable
     prey (VP), viable bait/prey (VBP), the ratio of viable bait/prey
     by viable baits (VBP/VB), the ratio of viable prey by viable baits
     (VP/VB), the total number of directed interactions (TI), and the
     ratio of total intractions by viable baits (TI/VB).

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

     T Chiang

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

     graphs = lapply(bpExperimentNames, function(x) get(x))
     names(graphs) = bpExperimentNames
     createSummaryTables(graphs)

