drop(base)
drop()所属R语言包:base
Drop Redundant Extent Information
下降的冗余程度的信息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Delete the dimensions of an array which have only one level.
删除一个数组,其中只有一个级别的尺寸。
用法----------Usage----------
drop(x)
参数----------Arguments----------
参数:x
an array (including a matrix).
一个数组(包括矩阵)。
值----------Value----------
If x is an object with a dim attribute (e.g., a matrix or array), then drop returns an object like x, but with any extents of length one removed. Any accompanying dimnames attribute is adjusted and returned with x: if the result is a vector the names are taken from the dimnames (if any). If the result is a length-one vector, the names are taken from the first dimension with a dimname.
x如果dim属性(例如,矩阵array),然后drop像x返回的对象,但任何程度的对象长度为一的删除。任何附带的调整和返回dimnames属性x:如果结果是一个向量namesdimnames(如有)。如果结果是一个长度为一个向量,名称取自与dimname的第一维。
Array subsetting ([) performs this reduction unless used with drop = FALSE, but sometimes it is useful to invoke drop directly.
阵列子集([)执行减少,除非使用drop = FALSE,但有时它是有用的drop直接调用。
参见----------See Also----------
drop1 which is used for dropping terms in models.
drop1这是用于模型中删除。
举例----------Examples----------
dim(drop(array(1:12, dim=c(1,3,1,1,2,1,2))))# = 3 2 2[= 3 2]
drop(1:3 %*% 2:4)# scalar product[标产品]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|