I have a vector:
> dput(rn, 20)
c(128L, 241L, 354L, 467L, 580L, 693L, 806L, 919L, 1032L, 1145L,
1258L, 1371L, 1484L, 1597L, 1710L, 1823L, 1936L, 2049L, 2162L,
2275L)
How do I get every third record from this vector?
|
|
|
Use
This works because
More generally, if you don't know the length of your vector in advance, you can calculate it using
See |
|||
|
|
Let recycling do it's magic.
though this (and all the other answers, I think) fails with
|
||||
|
|
|||
|
|
|
Mayby like this?
|
|||
|
|
|
For example,
|
|||
|
|