prod(base)
prod()所属R语言包:base
Product of Vector Elements
向量元素的产品
译者:生物统计家园网 机器人LoveR
描述----------Description----------
prod returns the product of all the values present in its arguments.
prod返回目前其参数的所有值的产品。
用法----------Usage----------
prod(..., na.rm = FALSE)
参数----------Arguments----------
参数:...
numeric or complex or logical vectors.
数字或复杂的或逻辑的向量。
参数:na.rm
logical. Should missing values be removed?
逻辑。应被删除缺失值吗?
Details
详情----------Details----------
If na.rm is FALSE an NA value in any of the arguments will cause a value of NA to be returned, otherwise NA values are ignored.
如果na.rm是FALSENA中的任何参数值将导致一个NA要返回的值,否则NA值将被忽略。
This is a generic function: methods can be defined for it directly or via the Summary group generic. For this to work properly, the arguments ... should be unnamed, and dispatch is on the first argument.
这是一个泛型函数:方法可直接或通过Summary组通用的定义。对于这个正常工作,...应该是命名,并派遣第一个参数是参数。
Logical true values are regarded as one, false values as zero. For historical reasons, NULL is accepted and treated as if it were numeric(0).
被视为逻辑真值,假值为零。由于历史的原因,NULL被接受和处理,如果它是numeric(0)。
值----------Value----------
The product, a numeric (of type "double") or complex vector of length one. <STRONG>NB:</STRONG> the product of an empty set is one, by definition.
产品,数字(类型"double")或长度为一复杂的矢量。 <STRONG>注:</强>空集的产品是通过定义一个。
S4方法----------S4 methods----------
This is part of the S4 Summary group generic. Methods for it must use the signature x, ..., na.rm.
这是的S4Summary组通用的一部分。它的方法必须使用签名x, ..., na.rm。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
sum, cumprod, cumsum.
sum,cumprod,cumsum。
"plotmath" for the use of prod in plot annotation.
plotmath为prod图注解的使用。
举例----------Examples----------
print(prod(1:7)) == print(gamma(8))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|