vector_occurrence: Find the positions of first or last occurrence of unique vector elements
Description
This function finds the positions of first or last occurrence of unique
vector elements.
Usage
vector_occurrence(x, type = "first")
Value
An integer
vector, the positions of the unique vector elements.
The ordering corresponds to unique(x), i.e., the \(i\)-th element in
the output is the (first or last) occurrence of the \(i\)-th element from
unique(x).
Arguments
x
[atomic()]
A vector.
type
[character(1)]
Either "first" for the first or "last" for the last occurrence.