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 create a vector in which each element is the i+6th element of another vector. For example, in a vector of length 120 I want to create another vector of length 20 in which each element is value i, i+6, i+12, i+18.... of the initial vector, i.e. I want to extract every 6th element of the original.

share|improve this question

3 Answers

up vote 13 down vote accepted
a <- 1:120
b <- a[seq(1, length(a), 6)]
share|improve this answer
perfect. Thanks – Gab_27 Mar 8 '11 at 20:32
3  
It is better to use seq.int(1L, length(a), 6L), at least for long vectors – Wojciech Sobala Mar 8 '11 at 20:45

Another trick for getting sequential pieces (beyond the seq solution already mentioned) is to use a short logical vector and use vector recycling:

foo[ c( rep(FALSE,5), TRUE ) ]
share|improve this answer
+1 This is slick, thanks – dolan Apr 12 at 3:13

I think you are asking two things which are not necessarily the same

I want to extract every 6th element of the original

You can do this by indexing a sequence:

foo <- 1:120
foo[1:20*6]

I would like to create a vector in which each element is the i+6th element of another vector.

An easy way to do this is to supplement a logical factor with FALSEs until i+6:

foo <- 1:120
i <- 1
foo[1:(i+6)==(i+6)]
[1]   7  14  21  28  35  42  49  56  63  70  77  84  91  98 105 112 119

i <- 10
foo[1:(i+6)==(i+6)]
[1]  16  32  48  64  80  96 112
share|improve this answer

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.