Learn R Programming

wcde (version 0.0.7)

every_other: Select every other (nth) element from a vector

Description

Select every other (nth) element from a vector

Usage

every_other(x, n = 2, start = 1, fill = NULL)

Value

Vector with elements removed

Arguments

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 NULL and hence skipped elements are removed rather than replaced.

Examples

Run this code
every_other(x = letters)
every_other(LETTERS, n = 3, start = 6)
every_other(x = letters, fill = "")

Run the code above in your browser using DataLab