row(base)
row()所属R语言包:base
Row Indexes
行指标
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns a matrix of integers indicating their row number in a matrix-like object, or a factor indicating the row labels.
返回一个整数,表明他们在一个矩阵类的对象的行数,或行标签的一个因素,指出矩阵。
用法----------Usage----------
row(x, as.factor = FALSE)
参数----------Arguments----------
参数:x
a matrix-like object, that is one with a two-dimensional dim.
矩阵类的对象,这是一个两维dim之一。
参数:as.factor
a logical value indicating whether the value should be returned as a factor of row labels (created if necessary) rather than as numbers.
一个逻辑值,指示是否应作为一个行标签因子(如果有必要创建),而不是作为数字返回值。
值----------Value----------
An integer (or factor) matrix with the same dimensions as x and whose ij-th element is equal to i (or the i-th row label).
x的ij个元素是平等i(i-TH行标签)的尺寸相同的整数矩阵(或因素)。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
col to get columns.
col列。
举例----------Examples----------
x <- matrix(1:12, 3, 4)
# extract the diagonal of a matrix[提取矩阵的对角线]
dx <- x[row(x) == col(x)]
dx
# create an identity 5-by-5 matrix[创建一个身份5-5矩阵]
x <- matrix(0, nrow = 5, ncol = 5)
x[row(x) == col(x)] <- 1
x
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|