Description Usage Arguments Details Value Author(s) Examples
Plot the gene set space of objects of "moa" and "mgsa"
1 2 |
x |
An object of class |
axes |
An integer vector in the length 2 to indicate the axes to be drawn. |
center.only |
A logical to indicate whether the separate gene set spaces from each of the data set should be plotted. Default is FALSE. |
topN |
An integer specify N gene set from the most positive and negative end of axes to be labeled |
data.pch |
The shape for plotting each data set. This argument is passed to points function, so only used when separate gene set spaces are plotted (i.e. center.only = FALSE). |
data.col |
The col for plotting each data set. This argument is passed to points function, so only used when separate gene set spaces are plotted (i.e. center.only = FALSE). |
highlight.col |
The color used to highlight the selected gene sets |
label |
Either a character vector or NULL (default). The character vector should be the name of some gene sets want ot be labeled. |
label.cex |
Passed to |
layout |
A matrix passed to the |
... |
Other arguments passed to |
This is a convenience function to explore the gene set space so not very flexible. For customized plot, please use the object of data@coord.comb
and data@coord.sep
.
If assign to variable, A list
of selected/highlighted gene set at
the (positve and negative) end of each axis will be returned.
Chen Meng
1 2 3 4 5 6 7 8 9 10 11 |
# library(mogsa)
# loading gene expression data and supplementary data
data(NCI60_4array_supdata)
data(NCI60_4arrays)
mgsa <- mogsa(x = NCI60_4arrays, sup=NCI60_4array_supdata, nf=9,
proc.row = "center_ssq1", w.data = "inertia", statis = TRUE)
plotGS(mgsa, center.only = TRUE, topN=5)
res <- plotGS(mgsa, center.only = FALSE, data.pch=1:4, data.col=1:4)
res
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.