knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

ukpolice

License: MIT Travis build status AppVeyor build status Coverage status CRAN_Status_Badge GitHub tag DOI R build status

The ukpolice package downloads data from the UK Police public data API, the full docs of which are available at https://data.police.uk/docs/. Data is available on police forces, crimes, policing areas and stop-and-search.

ukpolice is on CRAN, which you can download using:

install.packages("ukpolice")

You can install the development version of ukpolice from github with:

# install.packages("devtools")
devtools::install_github("evanodell/ukpolice")

Data is available on police forces, crimes, policing areas and stop-and-search. All functions begin with ukc_.

The example below queries stop and searches by the Thames Valley Police in December 2018, and plots them by police-reported ethnic group.

library(ukpolice)
library(ggplot2)
library(dplyr)

tv_ss <- ukc_stop_search_force("thames-valley", date = "2020-07")

tv_ss2 <- tv_ss %>% 
  filter(!is.na(officer_defined_ethnicity) & outcome != "" ) %>%
  group_by(officer_defined_ethnicity, outcome) %>%
  summarise(n = n()) %>%
  mutate(perc = n/sum(n))

theme_set(theme_bw())

p1 <- ggplot(tv_ss2, aes(x = outcome, y = perc,
                         group = outcome, fill = outcome)) + 
  geom_col(position = "dodge") + 
  scale_y_continuous(labels = scales::percent,
                     breaks = seq(0.25, 0.8, by = 0.25)) + 
  scale_x_discrete(labels = scales::wrap_format(20)) + 
  theme(legend.position = "none",
        axis.text.x = element_text(size = 7, angle = 45, hjust = 1)) + 
  labs(x = "Outcome", 
       y = "Percentage of stop and searches resulting in outcome",
       title = "Stop and Search Outcomes by Police-Reported Ethnicity",
       subtitle = "Thames Valley Police Department, July 2020",
       caption = "(c) Evan Odell | CC-BY-SA") + 
  facet_wrap(~officer_defined_ethnicity)

p1

For more details, see the package vignette vignette and function documentation.

Meta

Please note that the 'ukpolice' project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

The UK Police API is operated by the UK Government's Home Office. The ukpolice package is not affiliated with the Home Office. All data accessed through ukpolice is licenced with Open Government Licence v3.0.

Get citation information for ukpolice in R with citation(package = 'ukpolice'), or use the citation information below:

Odell E, Tierney N (2020). ukpolice: Download Data on UK Police and Crime. doi: 10.5281/zenodo.2619537, R package version r packageVersion("ukpolice"), URL: https://github.com/evanodell/ukpolice.

A BibTeX entry for LaTeX users is:

  @Manual{,
    title = {{ukpolice}: Download Data on UK Police and Crime},
    author = {Evan Odell and Nicholas Tierney},
    year = {2020},
    note = {R package version `r packageVersion("ukpolice")`},
    doi = {10.5281/zenodo.2619537},
    url = {https://github.com/evanodell/ukpolice},
  }


evanodell/ukpolice documentation built on Nov. 24, 2020, 8:06 a.m.