+.count(untb)
+.count()所属R语言包:untb
Add two count objects
加入两个计数对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Adds two count objects
添加了两个计数对象
用法----------Usage----------
## S3 method for class 'count'
a + b
## S3 method for class 'census'
a + b
参数----------Arguments----------
参数:a,b
objects of class count
类的对象count
Details
详细信息----------Details----------
Consider count objects a and b. Then a+b is a count object that records the number of each species in a and b combined. It is as though the organisms in the surveys were pooled.
考虑计算对象a和b。 a+b是一个计数,记录每个物种的数量在a和b合并的对象。这是因为,虽然在调查中汇集的生物。
Census objects are coerced to count objects, added, then the result coerced to a count object.
普查对象被强制为计算对象,然后强制转换为计数对象的结果。
The operation is commutative and associative.
该操作是交换律和结合。
(作者)----------Author(s)----------
Robin K. S. Hankin, based on an R-help tip from Gabor Grothendiek
实例----------Examples----------
a <- count(c(dogs=4,pigs=0,slugs=5))
b <- count(c(slugs=4,hogs=1,frogs=19))
a+b
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|