Description Usage Arguments Details Author(s) See Also Examples
Generic function boxplot
to display boxplots
of the data.
1 2 3 4 5 6 7 8 9 10 11 | ## S3 method for class 'maigesRaw'
boxplot(x, ...)
## S3 method for class 'maiges'
boxplot(x, name=NULL, gLabelID=NULL, sLabelID=NULL, gSamples=NULL, ...)
## S3 method for class 'maigesANOVA'
boxplot(x, name=NULL, gLabelID=NULL, sLabelID=NULL, gSamples=NULL, ...)
## S3 method for class 'maigesDEcluster'
boxplot(x, name=NULL, gLabelID=NULL, sLabelID=NULL, gSamples=NULL, ...)
|
x |
an object of any class defined in this package |
name |
character string specifying a gene to do boxplot of their
expression values along the types specified by |
gLabelID |
character value giving the name of gene label to be
used to search for parameter |
sLabelID |
idem to |
gSamples |
a named list containing character vectors defining
groups of samples from |
... |
additional parameters to |
This method uses the function maBoxplot
from
marray package to show boxplots of the W values along all the slides of a
dataset or along specific accessor methods to stratify the data in
objects of class maigesRaw
. For objects of classes
maiges
or maigesANOVA
this is also done if
the argument name
is NULL, else the method shows boxplots for
the expression values of the gene specified by name
stratified by
sample types from sLabelID
. For objects of class
maigesDEcluster
only boxplots of genes are produced and
the argument name
may not be NULL.
If you especify the y
parameter (but not named), defined for
the method maBoxplot
in package marray,
it will be displayed the M values instead of W.
Gustavo H. Esteves <gesteves@vision.ime.usp.br>
maBoxplot
in the marray package and
boxplot
in the graphics package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Loading the dataset
data(gastro)
## To see the boxplots for W values in all chips
boxplot(gastro.raw) ## maigesRaw class
boxplot(gastro.norm) ## maigesNorm class
boxplot(gastro.summ) ## summarized data (also maigesNorm class)
## To see the boxplots for W values in individual chips
## separating into print tips.
boxplot(gastro.raw[,1]) ## maigesRaw class, first chip
boxplot(gastro.norm[,8]) ## maigesNorm class, 8th chip
boxplot(gastro.summ[,19]) ## summarized data (also maigesNorm class), 19th chip
## Boxplot for individual genes into ANOVA model fitting
gastro.ANOVA = designANOVA(gastro.summ, factors="Tissue")
gastro.ANOVAfit = deGenesANOVA(gastro.ANOVA, retF=TRUE)
boxplot(gastro.ANOVAfit, name="KLK13", gLabelID="GeneName",
sLabelID="Tissue")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.