![]() |
VOOZH | about |
The cumulative sum can be defined as the sum of a set of numbers as the sum value grows with the sequence of numbers.
cumsum() function in R Language is used to calculate the cumulative sum of the vector passed as argument.
Syntax: cumsum(x)
Parameters:
x: Numeric Object
Example 1:
Output:
[1] 1 3 6 10 [1] -1 -3 -6 -10 -15 -21
Example 2:
Output:
[1] 2 6 11 18 [1] 2.4 8.0 11.4