summary.gsaResult | R Documentation |
Prints a summary of a gene set analysis result object.
## S3 method for class 'gsaResult'
summary(object,
mode = c("summary", "table"),
orderBy = c("adjustedPValues", "rawPValues", "geneSetName"),
significantOnly = FALSE,
signLevel = object$signLevel,
...)
object |
A result object as returned by |
mode |
Specifies the type of information that is displayed: By default ( |
orderBy |
If |
significantOnly |
If |
signLevel |
If |
... |
Currently unused |
Returns a data.frame with a summary of the produced results such as data set name, p-values, size of the given gene set.
geneSetAnalysis
, hist.gsaResult
, createSummaryTable
data(exampleData)
# perform gene set analyses for several pathways
res <- geneSetAnalysis(
# global parameters
dat = countdata,
geneSets = pathways,
analysis = analysis.averageCorrelation(),
# additional parameters for analysis.averageCorrelation
labs = labels,
numSamples = 10)
#summarize the analyses
summary(res, mode = "summary")
summary(res, mode = "table", orderBy = "rawPValues")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.