RStudio:
Suppose I have a set of data:
# Circle X Y velocity
1 A 21 8 0
2 A 32 17 4
3 A 23 32 5
4 B 22 4 0
5 B 43 12 10
6 B 12 0 2
7 C 12 4 0
.....
I wish to filter out all circles that have a max velocity of >9 (e.g. row 5 show circle B at that point having a velocity of >9 (Circle B's max velocity), therefore row 4-6 should be deleted as they all belong to circle B). Does anyone have any idea how to do this in Rstudio?