comp.F(DEDS)
comp.F()所属R语言包:DEDS
Computing F-statistic for Differential Expression
计算F统计量的差异表达
译者:生物统计家园网 机器人LoveR
描述----------Description----------
comp.F returns a function of one argument with bindings for L. This function accepts a microarray data matrix as its single argument, when evaluated, computes F statistics for each row of the matrix.
comp.F返回一个参数的函数绑定L。这个函数接受一个作为其单一参数的微阵列数据矩阵,计算时,计算F为矩阵的每一行的统计。
用法----------Usage----------
comp.F(L = NULL)
参数----------Arguments----------
参数:L
A vector of integers corresponding to observation (column) class labels. For k classes, the labels must be integers between 0 and k-1.
观察(列)类的标签对应的整数向量。对于k类,标签必须是0k-1之间的整数。
值----------Value----------
comp.F returns a function with bindings for L, which calculates and returns of vector of F statistics for each row in the data matrix.
comp.F返回绑定L的功能,计算和向量的F统计数据矩阵中的每一行返回。
作者(S)----------Author(s)----------
Yuanyuan Xiao, <a href="mailto:yxiao@itsa.ucsf.edu">yxiao@itsa.ucsf.edu</a>, <br>
Jean Yee Hwa Yang, <a href="mailto:jeany@maths.usyd.edu.au">jeany@maths.usyd.edu.au</a>.
参见----------See Also----------
comp.FC, comp.t
comp.FC,comp.t
举例----------Examples----------
X <- matrix(rnorm(1000,0,0.5), nc=10)
L <- rep(0:1,c(5,5))
# genes 1-10 are differentially expressed[差异表达基因的1-10]
X[1:10,6:10]<-X[1:10,6:10]+1
# two sample test, unequal variance[两个样本测试,不平等的方差]
F <- comp.F(L)
f.X <- F(X)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|