Returns a numeric object whose elements are the cumulative sums of the elements of the argument.
cumsum(x, na.rm = TRUE)
Arguments
| x |
a numeric object. |
| na.rm |
logical. Should missing values be removed? Default FALSE. |
Details
If na.rm=TRUE, then NA are treated as 0 when computing the cumulative sum.