prod {base} | R Documentation |
prod
returns the product of all the values
present in its arguments.
prod(..., na.rm = FALSE)
... |
numeric vectors. |
na.rm |
logical. Should missing values be removed? |
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.
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
print(prod(1:7)) == print(gamma(8))