-1

I have a data set of car crash data where I am gonna analyse them based of their locations. However, I want to clean the data first, How would I go about in removing crashes that have NA in the region column.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459

1 Answers1

2
library(dplyr)

your_data_frame %>% 
  filter(!is.na(region_column))
Vinícius Félix
  • 8,448
  • 6
  • 16
  • 32