MergeMethods(GeneSelector)
MergeMethods()所属R语言包:GeneSelector
Merge rankings obtained from different ranking procedures
合并从不同的排名程序获得的排名
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Converts a list containing objects of class GeneRanking into an object of class RepeatedRanking.
转换一个类RepeatedRanking的对象列表,其中包含的类GeneRanking对象。
用法----------Usage----------
MergeMethods(Rlist)
参数----------Arguments----------
参数:Rlist
A list consisting of objects of class GeneRanking, obtained by application of different methods to the same dataset.
一个名单的类GeneRanking对象组成,应用不同的方法获得相同的数据集。
值----------Value----------
An object of class RepeatedRanking. The slot original is occupied by the first element of Rlist. Note that
对象类RepeatedRanking。 original插槽被占用由Rlist的第一个元素。请注意
作者(S)----------Author(s)----------
Martin Slawski <br>
Anne-Laure Boulesteix
举例----------Examples----------
## Load toy gene expression data[#加载玩具基因表达数据]
data(toydata)
### class labels[##类的标签]
yy <- toydata[1,]
### gene expression[##基因表达]
xx <- toydata[-1,]
### Get Rankings from five different statistics[#获取来自五个不同的统计排名]
ordinaryT <- RankingTstat(xx, yy, type="unpaired")
baldilongT <- RankingBaldiLong(xx, yy, type="unpaired")
samT <- RankingSam(xx, yy, type="unpaired")
wilc <- RankingWilcoxon(xx, yy, type="unpaired")
wilcebam <- RankingWilcEbam(xx, yy, type="unpaired")
merged <- MergeMethods(list(ordinaryT, baldilongT, samT, wilc, wilcebam))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|