powered by
Find the closest value(s) of a number in a vector x. Multiple values will be reported, if the differences are the same.
Closest(x, a, which = FALSE, na.rm = FALSE)
the value or index in x which is closest to a
the vector to be searched in
the reference value
a logical value defining if the index position or the value should be returned. By default will the value be returned.
a logical value indicating whether NA values should be stripped before the computation proceeds.
NA
Andri Signorell <andri@signorell.net>
which
set.seed(8) x <- sample(10, size=10, replace=TRUE) Closest(x, 6) Closest(x, 6, which=TRUE) Closest(c(2, 3, 4, 5), 3.5)
Run the code above in your browser using DataLab