plotGenePair           package:maigesPack           R Documentation

_S_c_a_t_t_e_r _p_l_o_t_s _f_o_r _p_a_i_r _o_f _g_e_n_e_s

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

     This function displays scatter plots for pair of genes that
     presented altered correlation values in Relevance Network
     analysis.

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

     plotGenePair(obj, gene1, gene2, posL=NULL, rCor=TRUE)

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

     obj: object of class 'maigesRelNetM'.

   gene1: character string giving the first gene identification.

   gene2: character string giving the first gene identification.

    posL: numerical vector of length 2, specifying the x and y position
          of the legend.

    rCor: logical specifying if the correlation are robust (calculated
          by the function 'robustCorr'. Defaults to TRUE.

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

     This function only picks the result of the 'relNetworkM' and
     display scatter plots for a pair of genes giving the regression
     lines and the correlation values for the two biological groups
     tested.

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

     This function don't return any object.

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

     Gustavo H. Esteves <gesteves@vision.ime.usp.br>

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

     'maigesRelNetM', 'robustCorr', 'relNetworkM'.

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

     ## Loading the dataset
     data(gastro)

     ## Constructing the relevance network for sample
     ## 'Tissue' comparing 'Neso' and 'Aeso' for the 1st gene group
     gastro.net = relNetworkM(gastro.summ, sLabelID="Tissue", 
       samples = list(Neso="Neso", Aeso="Aeso"), geneGrp=11,
       type="Rpearson")

     ## As the sample size is small, because we used a small fraction of the
     ## genes from the original dataset, this isn't so reliable.
     plotGenePair(gastro.net, "KLK13", "EVPL")

