Description Usage Arguments Value Author(s) Examples
Converts a list containing objects of class GeneRanking into an object of class RepeatedRanking.
1 | MergeMethods(Rlist)
|
Rlist |
A list consisting of objects of class GeneRanking, obtained by application of different methods to the same dataset. |
An object of class RepeatedRanking. The slot original is occupied by the first element of Rlist. Note that
all information contained in the GeneRanking objects is dropped, except for the ranks.
Martin Slawski
Anne-Laure Boulesteix
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## 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))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.