How do I return only the Heights which satisfy an Age criterion in R?
i.e
Age Height
1 0.5
1 0.6
1 0.7
1 0.6
4 2.0
4 2.3
4 2.3
I want only the heights which correspond to an Age == 4. Which function in R would allow me to do that?
See Question&Answers more detail:os