man(bioDist)
man()所属R语言包:bioDist
Manhattan distance
曼哈顿距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate pairwise Manhattan distances and saves as a dist object.
计算成对曼哈顿距离和节省dist对象。
用法----------Usage----------
man(x, ...)
参数----------Arguments----------
参数:x
n by p matrix or an object of class that extends eSet. If x is an object of class that extends eSet, (eg ExpressionSet) then the function uses its 'exprs' slot.
n的p矩阵或一个类的对象扩展ESET。如果x是一个对象类,扩展eset感到,(如ExpressionSet)函数使用其exprs“槽。
参数:...
arguments passed to man:
参数传递man:
diagif TRUE, then the diagonal of the distance matrix will be displayed; default is FALSE.
diagifTRUE,然后在距离矩阵对角线将显示,默认为false。
upperif TRUE, then the upper triangle of the distance matrix will be displayed; default is FALSE.
upperifTRUE,然后在距离矩阵的上三角将显示,默认为false。
Details
详情----------Details----------
This is just an interface to dist with the right parameters set.
这仅仅是一个正确的参数设置界面dist。
值----------Value----------
An instance of the dist class with the pairwise Manhattan distances between the rows of x in case of a matrix or between the features (rows) in case of a class that extends eSet.
例如成对的曼哈顿的行之间的距离dist类x在一个矩阵的情况下,或在一个类,扩展eset感到情况下的特性(行)之间。
作者(S)----------Author(s)----------
Beiying Ding
参见----------See Also----------
cor.dist, spearman.dist, tau.dist,euc, KLdist.matrix,
cor.dist,spearman.dist,tau.dist,euc,KLdist.matrix
举例----------Examples----------
x <- matrix(rnorm(200), nrow = 5)
man(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|