minet                 package:minet                 R Documentation

_M_u_t_u_a_l _I_n_f_o_r_m_a_t_i_o_n _N_e_t_w_o_r_k

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

     For a given dataset, 'minet' infers the network in two steps. 
     First, the mutual information between all pairs of variables in
     'dataset' is computed according to the 'estimator' argument. Then
     the algorithm given by 'method'  considers the estimated mutual
     informations in order to build the network.

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

     minet(dataset, method="mrnet", estimator="mi.empirical", 
           disc="equalfreq", nbins=sqrt(nrow(dataset)) )

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

 dataset: data.frame where columns contain variables/features and rows
          contain outcomes/samples.

  method: The name of the inference algorithm : "clr", "aracne" or
          "mrnet" (default: "mrnet") - see references.

estimator: The name of the mutual information estimator :
          "mi.empirical", "mi.mm", "mi.shrink" or "mi.sg"(default:
          "mi.empirical") - see 'build.mim'.

    disc: The name of the discretization method to be used :
          "equalfreq" or "equalwidth" (default: "equalfreq") - see
          'discretize'.

   nbins: Integer giving the number of bins to be used in the
          discretization. 

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

     'minet' returns a matrix which is the weighted adjacency matrix of
     the network. The weights range from 0 to 1 and can be seen as a
     confidence measure on the presence of the arcs.  In order to
     display the network, load the package Rgraphviz and use the
     following command:  
      plot( as( returned.matrix ,"graphNEL") )

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

     Patrick E. Meyer, Frederic Lafitte, Gianluca Bontempi

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

     Patrick E. Meyer, Kevin Kontos, Frederic Lafitte, and Gianluca
     Bontempi.  Information-theoretic inference of large
     transcriptional regulatory networks. EURASIP Journal on
     Bioinformatics and Systems Biology, 2007.    

     Adam A. Margolin, Ilya Nemenman, Katia Basso, Chris Wiggins,
     Gustavo Stolovitzky, Riccardo Dalla Favera, and Andrea Califano.
     Aracne : An  algorithm for the reconstruction of gene regulatory
     networks in a mammalian cellular context. BMC Bioinformatics,
     2006.

     Jeremiah J. Faith, Boris Hayete, Joshua T. Thaden, Ilaria Mogno,
     Jamey Wierzbowski, Guillaume Cottarel, Simon Kasif, James J.
     Collins, and  Timothy S. Gardner. Large-scale mapping and
     validation of escherichia coli transcriptional regulation from a
     compendium of expression profiles. PLoS Biology, 2007.

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

     'build.mim',  'clr',  'mrnet',  'aracne'

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

     data(syn.data)
     net1 <- minet( syn.data )
     net2 <- minet( syn.data, estimator="mi.shrink" )
     net3 <- minet( syn.data, method="clr", estimator="mi.sg" )

