smcPlot                package:PGSEA                R Documentation

_P_l_o_t _P_G_S_E_A _r_e_s_u_l_t_s

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

     This basic function will plot results from PGSEA with easy
     altering of margins, colors, and text.

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

     smcPlot(m, ff = NULL, skip = "NO", scale = c(-3, 3), na.color = par("bg"), margins = NULL, r.cex = NULL, c.cex = NULL, show.grid = F, cnames = TRUE, rnames = TRUE, ...)

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

       m: matrix - your results from PGSEA (or any other numeric matrix
          of data)

      ff: factor - this factor corresponds to the subtypes of your
          samples and will control the column names

    skip: character - which subtype(s) to skip from"ff"

   scale: vector, length 2 - this vector sets the minimum and maximum
          values for the graph scale (at bottom of plot)

na.color: character - color to display in the result of an NA

 margins: vector, length 4 - this vector gives the expansion values for
          the margins

   r.cex: numeric - number giving the amount by which row names should
          be scaled relative to the default

   c.cex: numeric - number giving the amount by which column names
          should be scaled relative to the default 

show.grid: boolean - show grid outlines within plot?

  cnames: boolean or character - vector of alternatvie column names 

  rnames: boolean or character - vector of alternative row names

     ...: additional graphical parameters passed along to the plotting
          function 

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

     Karl Dykema <karl.dykema@vai.org>

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

     library(PGSEA)
     datadir <- system.file("data", package = "PGSEA")
     sample <- readGmt(file.path(datadir, "sample.gmt"))
     data(nbEset)

     pg <- PGSEA(nbEset,cl=sample,ref=1:5)
     sub <- factor(c(rep(NA,5),rep("NeuroB",5),rep("NeuroB_MYC+",5)))

     smcPlot(pg,sub,scale=c(-10,10),col=.rwb,margins=c(1,1,8,13))

