rankMatrix(RobustRankAggreg)
rankMatrix()所属R语言包:RobustRankAggreg
Convert a set of ranked lists into a rank matrix...
一组排列的列表转换成秩矩阵...
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert a set of ranked lists into a rank matrix
一组排列的列表转换成秩矩阵
用法----------Usage----------
参数----------Arguments----------
参数:glist
list of preference lists
列表的优先列表
参数:N
number of all rankable elements
所有rankable元素数
参数:full
logical showing if the given rankings are complete
逻辑显示,如果给定的排名是完整的
Details
详细信息----------Details----------
The lists are converted to a format that is used by aggregateRanks. If partial rankings are given to the function, all the missing values are subtituted by the maximum rank N, which can be specified manually. This parameter has a very strong influence on the performance of RRA algorithm, therfore it should be reasonably accurate.
列表转换格式所使用aggregateRanks。如果部分排名的功能,所有的遗漏值的最高等级N,也可以手动指定subtituted。 RRA算法的性能参数有一个非常强大的影响力,至此,它应该是相当准确的。
Parameter full is used, when full rankings are given, but the sets of ranked elements do not match perfectly. Then the structurally missing values are substituted with
参数充分使用,当充分排名,但排名元素套不完全匹配。然后结构缺失值被取代
值----------Value----------
A matrix, with as many columns as input rankings and rows as unique elements
输入的排名和独特的元素的行与多列的矩阵,
(作者)----------Author(s)----------
Raivo Kolde <a href="mailto:rkolde@gmail.com">rkolde@gmail.com</a>
实例----------Examples----------
glist <- list(sample(letters, 4), sample(letters, 10), sample(letters, 12))
r = rankMatrix(glist)
r = rankMatrix(glist, full = TRUE)
# Use real data[使用真实的数据]
data(cellCycleKO)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|