col(base)
col()所属R语言包:base
Column Indexes
列索引
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns a matrix of integers indicating their column number in a matrix-like object, or a factor of column labels.
返回一个整数矩阵表明他们在一个矩阵类的对象的列数或列标签的一个因素。
用法----------Usage----------
col(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 column 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 j (or the j-th column label).
x的ij个元素是平等j(j次列标签)的尺寸相同的整数矩阵(或因素)。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
row to get rows.
row让行。
举例----------Examples----------
# extract an off-diagonal of a matrix[提取矩阵非对角线]
ma <- matrix(1:12, 3, 4)
ma[row(ma) == col(ma) + 1]
# create an identity 5-by-5 matrix[创建一个身份5-5矩阵]
x <- matrix(0, nrow = 5, ncol = 5)
x[row(x) == col(x)] <- 1
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|