Let's say I have a vector of integers:
> a<-sample(1:100,10)
> a
[1] 13 23 97 70 63 32 82 31 15 36
And I want a vector containing the cumulative values of this vector. That is, I want the vector
13 36 133 203 266 298 380 411 426 462
One way to achieve this would be to use a for loop. I prefer doing it using apply/lapply/sapply/..., but the only way I can think of for doing this is:
sapply(1:length(a), function(x) {sum(a[1:x])})
[1] 13 36 133 203 266 298 380 411 426 462
This works, but I was wondering if there was a better way to do this. Is there?
(This may have been a bad example, but in general, is there a way to access elements of the list being iterated over, given that you know the position of these element relative to the current one?)