Search code examples
rdataframeclosest

Closest value to a specific column in R


I would like to find the closest value to column x3 below.

data=data.frame(x1=c(24,12,76),x2=c(15,30,20),x3=c(45,27,15))
data
  x1 x2 x3
1 24 15 45
2 12 30 27
3 76 20 15

So desired output will be

Closest_Value_to_x3
   24
   30
   20

Please help. Thank you


Solution

  • Use max.col(-abs(data[, 3] - data[, -3])) to find the column positions of the closest values and use this result as part of a matrix to extract desired values from your data. The matrix is returned by cbind

    col <- 3
    data[, -col][cbind(1:nrow(data),
                       max.col(-abs(data[, col] - data[, -col])))]
    #[1] 24 30 20