every_other | R Documentation |
Select every other (nth) element from a vector
every_other(x, n = 2, start = 1, fill = NULL)
x |
Vector to select (remove) elements from |
n |
Numeric value for the number of elements to skip. Default is 2, i.e. skips every second element |
start |
Numeric value to indicate which element of the vector to commence from. |
fill |
Character string to be used in place of skipped element. By default is |
Vector with elements removed
every_other(x = letters)
every_other(LETTERS, n = 3, start = 6)
every_other(x = letters, fill = "")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.