is.fullrank(limma)
is.fullrank()所属R语言包:limma
Check for Full Column Rank
检查列满秩
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Test whether a numeric matrix has full column rank.
测试是否一个数字矩阵列满秩。
用法----------Usage----------
is.fullrank(x)
nonEstimable(x)
参数----------Arguments----------
参数:x
a numeric matrix or vector
数字矩阵或向量
Details
详情----------Details----------
is.fullrank is used to check the integrity of design matrices in limma, for example after subsetting operations.
is.fullrank是用来检查中limma的设计矩阵的完整性,例如,在子集操作。
nonEstimable is used by lmFit to report which coefficients in a linear model cannot be estimated.
nonEstimablelmFit报告系数线性模型无法估计的。
值----------Value----------
is.fullrank returns TRUE or FALSE.
is.fullrank返回TRUE或FALSE。
nonEstimable returns a character vector of names for the columns of x which are linearly dependent on previous columns. If x has full column rank, then the value is NULL.
nonEstimable返回x这是线性依赖于以前的专栏中的列的名称的特征向量。 x如果列满秩,则该值是NULL。
作者(S)----------Author(s)----------
Gordon Smyth
举例----------Examples----------
# TRUE[真]
is.fullrank(1)
is.fullrank(cbind(1,0:1))
# FALSE[假]
is.fullrank(0)
is.fullrank(matrix(1,2,2))
nonEstimable(matrix(1,2,2))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|