identifyMonomorphism(scrime)
identifyMonomorphism()所属R语言包:scrime
Identification of Constant Variables
鉴定常量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Identifies the rows of a matrix that only show one level.
标识的矩阵行只显示一个水平。
用法----------Usage----------
identifyMonomorphism(x)
参数----------Arguments----------
参数:x
a matrix consisting of integers between 1 and n.cat, where n.cat is the number of levels the variables in x can take. Each row of x is assumed to represent one variable. Missing values are allowed.
矩阵之间的整数n.cat,其中n.cat是多少级别中的变量x可以。 x的每一行代表一个变量被假定为。遗漏值是允许的。
值----------Value----------
Numeric vector containing the rows of x showing only one level.
数字向量x只显示一个水平的行。
(作者)----------Author(s)----------
Holger Schwender, <a href="mailto:holger.schwender@udo.edu">holger.schwender@udo.edu</a>
实例----------Examples----------
# Generate a data set consisting of 10 rows and 15 columns,[由10行和15列组成的生成数据集,]
# where the values are randomly drawn from the integers 1, 2, and 3,[值从整数1,2,和3中,随机抽取]
# and row 3 and 7 consist only of one level.[和第3行和第7仅由一层。]
mat <- matrix(sample(3, 2000, TRUE), 10)
mat[3, ] <- 1
mat[7, ] <- 2
identifyMonomorphism(mat)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|