Let x be the vector for the height of fathers
x <- c(180.3, 177.4, etc)
and y be the height of the corresponding sons
y <- c(179.5, 178.5, etc)
I now want to create a subset of fathers whose height is within 2.5cm of x=182
with the corresponding sons. How do I do this?