Skip to contents

This function finds the closest index to a given value in a vector.

Usage

find_index(x, y)

Arguments

x

a vector

y

a value

Value

the index of the closest value in the vector

Examples

find_index(c(1, 2, 3, 4, 5), 3.5)
#> numeric(0)