first {tidytable} | R Documentation |
Extract the first, last, or nth value from a vector
Description
Extract the first, last, or nth value from a vector.
Note: These are simple wrappers around vctrs::vec_slice()
.
Usage
first(x, default = NULL, na_rm = FALSE)
last(x, default = NULL, na_rm = FALSE)
nth(x, n, default = NULL, na_rm = FALSE)
Arguments
x |
A vector |
default |
The default value if the value doesn't exist. |
na_rm |
If |
n |
For |
Examples
vec <- letters
first(vec)
last(vec)
nth(vec, 4)
[Package tidytable version 0.11.1 Index]