select_by_position.Rd
This is mostly useful in the context of purrr::map pipelines.
select_by_position(x, position)
A vector.
The position to select out.
The vector at the given index.
select_by_position(c(1,2,3), 2) #> [1] 2