Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to find a way to replace a for loop that I am using. Quick version of my question is: how can I go from a vector [a,b,c,d,e] to [1,a,a*b,a*b*c,a*b*c*d] ? I currently do something like:

myvec <- c(.3,.5,.2,.3,.3)  
new_vec <- vector(length=length(myvec))  
new_vec[1] <- 1  
for (i in 2:length(myvec)) {  
    new_vec[i] <- myvec[i-1]*new_vec[i-1]  
}  

However, this is extremely slow. Any ideas? Thank you!

share|improve this question

1 Answer

up vote 5 down vote accepted

Does this do what you want?

c(1, cumprod(myvec))[1:length(myvec)]
share|improve this answer
Hi Andreas, that does exactly what I want. Thank you so much! – Xu Wang Jun 25 '11 at 20:37
do You happen to know how I can see the source code of cumprod? I am guessing that it is written in C? – Xu Wang Jun 25 '11 at 20:38
Yes, it is written in C. I found an old version of the source here: google.com/codesearch#ETHLt0MjEm8/mirrors/Linux/Guadalinex/… but it's just really a cumulative product. – Andreas Jansson Jun 25 '11 at 20:45
ok, thanks. It was more out of curiosity. I have often wanted to look at the source code of functions with .Primitive and never took the time to ask. – Xu Wang Jun 25 '11 at 20:48
1  
head(c(1, cumprod(myvec)),-1) is a few characters shorter ... – Ben Bolker Jun 26 '11 at 3:49
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.