Calculate which points fall in a box.
in1which <- function
### Calculate which points fall in a box.
(p,
### data frame of points with columns x and y and many rows.
box
### data frame of 1 row with columns left right top bottom.
){
p$x>=box$left & p$x<=box$right & p$y<=box$top & p$y>=box$bottom
}
| Please contact Toby Dylan Hocking if you are using directlabels or have ideas to contribute, thanks! |
| Documentation website generated from source code version 2021.2.24 (git revision bb6db07 Mon, 14 Jun 2021 22:38:45 +0530) using inlinedocs. |
| validate |