TestResults-class(limma)
TestResults-class()所属R语言包:limma
Matrix of Test Results - class
测试结果 - 类矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A matrix-based class for storing the results of simultanous tests. TestResults objects are normally created by classifyTestsF, classifyTestsT or classifyTestsP.
一个矩阵为基础的类,用于存储法同时测试的结果。 TestResults通常是由classifyTestsF,classifyTestsT或classifyTestsP创建对象。
用法----------Usage----------
## S3 method for class 'TestResults'
summary(object, ...)
参数----------Arguments----------
参数:object
object of class TestResults
对象类TestResults
参数:...
other arguments are not used
不使用其他参数
角子机/列表组件----------Slots/List Components----------
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.
TestResults对象可以创建new("TestResults",results)其中results是一个矩阵。这个类的对象包含没有插槽(除.Data),虽然属性dim和dimnames可作为槽处理。
方法----------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.
这个类直接继承自类matrix所以矩阵适当的任何操作,将这个类的对象。 show和summary方法还实施。
Functions in LIMMA which operate on TestResults objects include heatDiagram, vennCounts, vennDiagram, write.fit.
TestResults对象在LIMMA职能包括heatDiagram,vennCounts,vennDiagram,write.fit。
作者(S)----------Author(s)----------
Gordon Smyth
参见----------See Also----------
02.Classes gives an overview of all the classes defined by this package. 08.Tests gives an overview of multiple testing.
02.Classes给出了一个概述此包中定义的所有类。 08.Tests给出了多个测试概述。
举例----------Examples----------
# Assume a data object MA and a design matrix[假设一个数据对象的马和设计矩阵]
fit <- lmFit(MA, design)
fit <- eBayes(fit)
results <- decideTests(fit)
summary(results)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|