match_numerics {oeli}R Documentation

Best-possible match of two numeric vectors

Description

This function matches the indices of two numeric vectors as good as possible (that means with the smallest possible sum of deviations).

Usage

match_numerics(x, y)

Arguments

x

A numeric vector.

y

Another numeric vector of the same length as x.

Value

An integer vector of length length(x) with the positions of y in x.

Examples

x <- c(-1, 0, 1)
y <- c(0.1, 1.5, -1.2)
match_numerics(x, y)


[Package oeli version 0.4.1 Index]