Closest {DescTools} | R Documentation |
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)
x |
the vector to be searched in |
a |
the reference value |
which |
a logical value defining if the index position or the value should be returned. By default will the value be returned. |
na.rm |
a logical value indicating whether |
the value or index in x which is closest to a
Andri Signorell <andri@signorell.net>
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)