Returns details of crimes that cannot be mapped to a particular location. Note that the police force must be specified.
ukc_crime_no_location(force, crime_category = NULL, date = NULL)
A string containing the name of the police force to return data for. Must be specified, and is not case sensitive.
The category of crime to return. Defaults to
returning all crimes. See ukc_crime_category()
for details.
See ukc_forces()
for details.
The year and month in "YYYY-MM" form. If NULL
, latest
available month will be returned. Also accepts dates in formats that can be
coerced to Date
class with as.Date()
.
A tibble
with details of crimes without a specific location.
if (FALSE) {
no_location <- ukc_crime_no_location(force = "city-of-london")
}