-1

I'm trying to remove any coordinates from my dataset that fall outside of the state of Utah.

Is there a good package to utilize for this?

zx8754
  • 52,746
  • 12
  • 114
  • 209
fran25
  • 23
  • 3

1 Answers1

-1

you could use something like :

data <- data[state != 'Utah']

Else you could use this package : dplyr dplyr.tidyverse.org/reference/filter.html

loangodard
  • 23
  • 4