reduce(secr)
reduce()所属R语言包:secr
Combine Columns
列组合在一起
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combine columns in a matrix-like object to create a new data set using the first non-zero value.
在类似矩阵的对象列组合在一起,创建一个新的数据集使用的第一个非零值。
用法----------Usage----------
reduce (object, columns, ...)
参数----------Arguments----------
参数:object
object that may be coerced to a matrix
对象可能被强制转换为矩阵
参数:columns
list in which each component is a vector of subscripts for columns to be pooled
列表,其中每个组件是一个列向量的下标以汇集
参数:...
other arguments (not used currently)
其他参数(目前未使用)
Details
详细信息----------Details----------
The first element of columns defines the columns of object for the first new column, the second for the second new column etc. This is a generic method. A method exists for objects of class capthist.
columns的第一个元素定义的列object的一个新列的第二个新柱等,第二,这是一个通用的方法。一个方法存在对象的类capthist。
值----------Value----------
A matrix with number of columns equal to length(columns).
一个矩阵的列数等于length(columns)。
参见----------See Also----------
capthist, reduce.capthist
capthist,reduce.capthist
实例----------Examples----------
## matrix with random zeros[#矩阵,随机零]
temp <- matrix(runif(20), nc = 4)
temp[sample(20,10)] <- 0
temp
reduce(temp, list(1:2, 3:4))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|