euc(bioDist)
euc()所属R语言包:bioDist
Euclidean distance
欧氏距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate pairwise Euclidean distances and saves the result as a 'dist' object
计算成对欧氏距离作为一个dist的对象,并保存结果
用法----------Usage----------
euc(x, ...)
参数----------Arguments----------
参数:x
n by p matrix or an object of a class that extends eSet; if x is a matrix, pairwise distances are calculated between the rows of a matrix. If x is an object of a class that extends eSet, the method makes use of the 'exprs' method and pairwise distances are calculated between samples(columns) if sample is TRUE
N; p矩阵或一个类,扩展ESET的对象,如果x是一个矩阵,成对矩阵的行之间的距离计算。如果x是一个扩展eset感到类的一个对象,方法,使用方法和“exprs”成对距离计算样本(列)之间,如果sample是TRUE
参数:...
arguments passed to euc:
参数传递euc:
diagif TRUE, then the diagonal of the distance matrix will be displayed; default is FALSE.
diag如果属实,那么距离矩阵对角线将显示默认为FALSE。
upperif TRUE, then the upper triangle of the distance matrix will be displayed; default is FALSE.
upper如果属实,那么将距离矩阵的上三角显示的默认值为FALSE。
sampleFor objects of classes that extends eSet, pairwise distances are calculated between samples(columns) if sample is TRUE ; default value is TRUE
sample对于延伸ESET类的对象,成对距离计算样品间(列)sample是TRUE;默认值是TRUE
Details
详情----------Details----------
The method calculates pairwise euclidean distances, assuming that all samples have the same number of observations
该方法计算成对欧氏距离,假设所有的样品有相同数量的意见
值----------Value----------
An object of class dist with the pairwise Euclidean distance between rows except in case of objects of class that extend eSet when sample is TRUE
Object类的一个dist当成对的行之间的欧几里德距离延长ESET类对象的情况下除外sample是TRUE
作者(S)----------Author(s)----------
Beiying Ding
参见----------See Also----------
spearman.dist, tau.dist, man,KLdist.matrix,KLD.matrix,
spearman.dist,tau.dist,man,KLdist.matrix,KLD.matrix
举例----------Examples----------
x <- matrix(rnorm(200), nrow = 5)
euc(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|