match_numerics {oeli} | R Documentation |
This function matches the indices of two numeric vectors as good as possible (that means with the smallest possible sum of deviations).
match_numerics(x, y)
x |
A |
y |
Another |
An integer
vector of length length(x)
with the positions of
y
in x
.
x <- c(-1, 0, 1)
y <- c(0.1, 1.5, -1.2)
match_numerics(x, y)