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.

Simple question: I've got two vectors of 0's and 1's, a and b. The b vector has as many entries as there are 1's in a. I would like to replace the 1's in a with the entries from b. Of course I can do this in a for loop, but is there a nice vectorized way to do this?

From

a <- c(0, 1, 1, 0, 1)
b <- c(1, 0, 1)

create

c <- c(0, 1, 0, 0, 1)
share|improve this question

1 Answer

up vote 3 down vote accepted

This is pretty simple: a[a == 1] <- b

share|improve this answer
I've been trying recently to use subset() instead of brackets. Guess I'm trying a bit too hard. Thanks. – shujaa Sep 8 '11 at 1:48

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.