TestResults-class: Matrix of Test Results - class
Usage
## S3 method for class 'TestResults':
summary(object, \dots)
Arguments
object
object of class TestResults
...
other arguments are not used
Slots/List Components
A TestResults object is essentially a numeric matrix with elements equal to 0, 1 or -1.
Zero represents acceptance of the null hypothesis, 1 indicates rejection in favor of the right tail alternative and -1 indicates rejection in favor of the left tail alternative.
TestResults objects can be created by new("TestResults",results) where results is a matrix.
Objects of this class contain no slots (other than .Data), although the attributes dim and dimnames may be treated as slots.Methods
This class inherits directly from class matrix so any operation appropriate for matrices will work on objects of this class.
show and summary methods are also implemented.
Functions in LIMMA which operate on TestResults objects include
heatDiagram,
vennCounts,
vennDiagram,
write.fit.See Also
02.Classes gives an overview of all the classes defined by this package.
08.Tests gives an overview of multiple testing.Examples
Run this code# Assume a data object MA and a design matrix
fit <- lmFit(MA, design)
fit <- eBayes(fit)
results <- decideTests(fit)
summary(results)
Run the code above in your browser using DataLab