AllKendall(RMallow)
AllKendall()所属R语言包:RMallow
All Kendall's distances between two sets of rankings.
所有肯德尔的两套排名之间的距离。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates all of the Kendall's distances between two different sets of rankings.
计算所有肯德尔的两套不同的排名之间的距离。
用法----------Usage----------
AllKendall(r, seqs, data.info = NULL)
参数----------Arguments----------
参数:r
One set of sequences.
一组的序列。
参数:seqs
Another set of sequences.
另一组的序列。
参数:data.info
Optional argument, a 0/1/NA matrix specifying all of the relevant information to calculate Kendall's difference for "r". Used for efficiency in "Solve".
可选参数,0/1/NA的矩阵,指定所有的相关信息为“R”来计算Kendall的差异。用于效率“解决”。
值----------Value----------
Matrix where output[i, j] represents the distance from sequence "i" in "r" to sequence "j" in "seqs".
矩阵输出[I,J],代表距离序列的“i”,在“R”序列“J”在“seqs”。
(作者)----------Author(s)----------
Erik Gregory
实例----------Examples----------
data1 <- do.call("rbind", list(1:5, 5:1, c(3, 2, 1, 4, 5)))
data2 <- do.call("rbind", list(1:5, 5:1))
# AllKendall(data1, data2)[AllKendall(DATA1,DATA2)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|