plotP                  package:SPIA                  R Documentation

_S_P_I_A _t_w_o-_w_a_y _e_v_i_d_e_n_c_e _p_l_o_t

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

     Plots each pathway as a point, using the over-representation
     p-value, pNDE, and perturbations accumulation p-value, pPERT, as
     coordinates.

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

     plotP(x,threshold=0.05)

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

       x: A data frame produced by 'spia' function.

threshold: A numerical value between 0 and 1 to be used as significance
          threshold in inferring pathway significance.

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

     In this plot each pathway is a point and the coordinates are the
     log of pNDE (using a hypergeometric model) and the p-value from
     perturbations, pPERT. The oblique lines in the plot show the
     significance  regions based on the combined evidence.

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

     This function does not return any value. It only generates a plot.

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

     Adi Laurentiu Tarca <atarca@med.wayne.edu>, Purvesh Khatri, Sorin
     Draghici

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

     Adi L. Tarca, Sorin Draghici, Purvesh Khatri, et. al, A Signaling
     Pathway Impact Analysis for  Microarray Experiments, 2008,
     Bioinformatics, 2009, 25(1):75-82. 

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

     'spia'

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

     # Examples use colorectal cancer dataset
     data(colorectalcancer)

     # pathway analysis based on combined evidence of ORA and perturbations
     # use nB=2000 or larger for more accurate results
     res<-spia(de=DE_Colorectal, all=ALL_Colorectal, organism="hsa",nB=200,plots=FALSE,verbose=TRUE,beta=NULL)

     #Generate the evidence plot
     plotP(res,threshold=0.1)

