Rev 68017 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/sum.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2015 R Core Team% Distributed under GPL 2 or later\name{sum}\alias{sum}\title{Sum of Vector Elements}\description{\code{sum} returns the sum of all the valuespresent in its arguments.}\usage{sum(\dots, na.rm = FALSE)}\arguments{\item{\dots}{numeric or complex or logical vectors.}\item{na.rm}{logical. Should missing values (including \code{NaN}) beremoved?}}\value{The sum. If all of \code{\dots} are of type integer or logical, thenthe sum is integer, and in that case the result will be \code{NA} (with awarning) if integer overflow occurs. Otherwise it is a length-onenumeric or complex vector.\strong{NB:} the sum of an empty set is zero, by definition.}\details{This is a generic function: methods can be defined for itdirectly or via the \code{\link[=S3groupGeneric]{Summary}} group generic.For this to work properly, the arguments \code{\dots} should beunnamed, and dispatch is on the first argument.If \code{na.rm} is \code{FALSE} an \code{NA} or \code{NaN} value inany of the arguments will cause a value of \code{NA} or \code{NaN} tobe returned, otherwise \code{NA} and \code{NaN} values are ignored.Logical true values are regarded as one, false values as zero.For historical reasons, \code{NULL} is accepted and treated as if itwere \code{integer(0)}.Loss of accuracy can occur when summing values of different signs:this can even occur for sufficiently long integer inputs if thepartial sums would cause integer overflow. Where possibleextended-precision accumulators are used, but this isplatform-dependent.}\section{S4 methods}{This is part of the S4 \code{\link[=S4groupGeneric]{Summary}}group generic. Methods for it must use the signature\code{x, \dots, na.rm}.\sQuote{\link{plotmath}} for the use of \code{sum} in plot annotation.}\seealso{\code{\link{colSums}} for row and column sums.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth & Brooks/Cole.}\examples{% for beginners## Pass a vector to sum, and it will add the elements together.sum(1:5)## Pass several numbers to sum, and it also adds the elements.sum(1, 2, 3, 4, 5)## In fact, you can pass vectors into several arguments, and everything gets added.sum(1:2, 3:5)## If there are missing values, the sum is unknown, i.e., also missing, ....sum(1:5, NA)## ... unless we exclude missing values explicitly:sum(1:5, NA, na.rm = TRUE)}\keyword{arith}