onegcc(rsgcc)
onegcc()所属R语言包:rsgcc
compute one Gini correlation coefficient
计算一个基尼相关系数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
onegcc calcluates one Gini correlation coefficient with rank information of the first variable.
onegcc calcluates基尼排名信息的第一个变量的相关系数。
用法----------Usage----------
onegcc(x, y)
参数----------Arguments----------
参数:x
a numeric vector.
一个数值向量。
参数:y
a numeric vector with the same length of x.
一个数值向量的x具有相同的长度。
Details
详细信息----------Details----------
This is a generic function cacluating correlation with rank information of the first variable and the actual value information of the second variable.
这是一个通用的功能cacluating与等级信息相关的第一可变值和实际值的信息的第二可变。
值----------Value----------
Gini correlation coefficient (a numeric value ranged from -1.0 to 1.0).
基尼系数(从-1.0到1.0之间的一个数值)。
(作者)----------Author(s)----------
Chuang Ma, Xiangfeng Wang
实例----------Examples----------
data(rsgcc)
x <- rnaseq[1:10,] #Just use a small subset of RNA-Seq data [只需使用RNA-Seq数据的一小部分]
onegcc(x[1,], x[2,]) # generate one correlaiton for one gene pair[产生一个correlaiton的一个基因对]
onegcc(x[2,], x[1,]) # generate the other correlaiton for the same gene pair[相同的基因对生成其他correlaiton]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|