Currently, running ojo_crim_cases(districts = "Oklahoma") %>% collect() will not return anything, because the district names are all capitalized (e.g. "OKLAHOMA"). It would be kind of nice to just run that variable through toupper() just so we don't have to worry about case sensitivity when we're looking for certain counties.
Currently, running
ojo_crim_cases(districts = "Oklahoma") %>% collect()
will not return anything, because the district names are all capitalized (e.g. "OKLAHOMA"). It would be kind of nice to just run that variable throughtoupper()
just so we don't have to worry about case sensitivity when we're looking for certain counties.