prod {math} R Documentation

Product of Vector Elements

Description


prod returns the product of all the values present in its arguments.

Usage

prod(x,
    na.rm = FALSE);

Arguments

x

numeric or complex or logical vectors.

na.rm

logical. Should missing values be removed?. [as boolean]

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. 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. 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).

Authors

SMRUCC genomics Institute

Value

The product, a numeric (of type "double") or complex vector of length one. NB: the product of an empty set is one, by definition.

clr value class

Examples


[Package math version 2.33.856.6961 Index]