sizeDiss(cluster)
sizeDiss()所属R语言包:cluster
Sample Size of Dissimilarity Like Object
喜欢的对象相异的样本大小
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the number of observations (sample size) corresponding to a dissimilarity like object, or equivalently, the number of rows or columns of a matrix when only the lower or upper triangular part (without diagonal) is given.
返回像对象的不同对应的若干意见(样本大小),或等价,矩阵的行或列的数目时,只有较低或上三角部分(不包括对角线)给出。
It is nothing else but the inverse function of f(n) = n(n-1)/2.
它不是别的,而是f(n) = n(n-1)/2反函数。
用法----------Usage----------
sizeDiss(d)
参数----------Arguments----------
参数:d
any R object with length (typically) n(n-1)/2.
任何长度(典型值)n(n-1)/2R对象。
值----------Value----------
a number; n if length(d) == n(n-1)/2, NA otherwise.
号码;n如果length(d) == n(n-1)/2,NA否则。
参见----------See Also----------
dissimilarity.object and also as.dist for class dissimilarity and
dissimilarity.object和as.dist类dissimilarity的
举例----------Examples----------
sizeDiss(1:10)# 5, since 10 == 5 * (5 - 1) / 2[5,自10 == 5 *(5 - 1)/ 2]
sizeDiss(1:9) # NA[不适用]
n <- 1:100
stopifnot(n == sapply( n*(n-1)/2, function(n) sizeDiss(logical(n))))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|