rbind.popn(secr)
rbind.popn()所属R语言包:secr
Combine popn Objects
结合POPN对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Form a single popn object from two or more existing popn objects, or a list.
从两个或多个现有popn对象,或一个列表,形成一个单一的popn对象。
用法----------Usage----------
rbind.popn(..., renumber = TRUE)
参数----------Arguments----------
参数:...
one or more popn objects, or a single list of popn objects
一个或多个popn对象,或一个单独的列表popn对象
参数:renumber
logical for whether row names in the new object should be set to the row indices
逻辑应设置是否在新的对象的行名行指数
Details
详细信息----------Details----------
An attempt to combine objects will fail if they conflict in their covariates attributes. This is not an S3 method.
尝试合并对象将失败,如果他们在他们的“covariates属性冲突。这不是一个S3方法。
值----------Value----------
An object of class popn with number of rows equal to the sum of the rows in the input objects.
类popn编号的行中的行的输入对象的总和等于一个目的。
参见----------See Also----------
popn
popn
实例----------Examples----------
## generate and combine two subpopulations[#生成,并结合两个亚群]
trapobj <- make.grid()
p1 <- sim.popn(D = 3, core = trapobj)
p2 <- sim.popn(D = 2, core = trapobj)
covariates(p1) <- data.frame(size = rep("small", nrow(p1)))
covariates(p2) <- data.frame(size = rep("large", nrow(p2)))
pop <- rbind.popn(p1,p2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|