Police cadet evaluation dataset

people analytics data recruitment hiring training

A “new” real-world dataset useful for training in people analytics.

Luděk Stehlík https://www.linkedin.com/in/ludekstehlik/
10-24-2022

While cleaning out my (very) old computer, I came across a hidden gem: a dataset with real-world data about police cadet evaluation. It was part of a tutorial from Peltarion, an AI software company providing specialized software (Synapse) for creating, training, evaluating, and deploying artificial neural networks and other adaptive systems (recently acquired by King). AFAIK, this dataset is not part of any publicly available database with training datasets, so it may add a bit to the portfolio of possibilities for those involved and interested in people analytics.

The data were collected as part of an effort by the National Police Services Agency and the Dutch Ministry of Justice and Security to objectively examine whether the data collected at the time of graduation of police cadets can be used to predict the requirements for passing the standard five-year evaluation. The main reason for the study was to find the key indicators for the then 20% failure rate, which was considered unacceptable (data were collected in the late 1990s), and to study the effects of lowering admission standards (accepting cadets with past criminal records and lowering the minimum grade from 5.5 to 4.0).

The dataset has the following characteristics:

Here is a table you can use to check and download the data.

Show code
# uploading libraries for data manipulation and making user-friendly data table
library(tidyverse)
library(DT)

# uploading data
data <- readr::read_csv("./policeCadetEvaluation.csv")

# adjusting the data type for some variables for tabulation and visualization purposes
data <- data %>%
  mutate(
    CR = as.factor(CR),
    Sex = as.factor(Sex),
    SecE = as.factor(SecE),
    FinalE = as.factor(FinalE)
  )

# defining the table
DT::datatable(
  data,
  class = 'cell-border stripe', 
  filter = 'top',
  extensions = 'Buttons',
  fillContainer = FALSE,
  rownames= FALSE,
  options = list(
    pageLength = 5, 
    autoWidth = TRUE,
    dom = 'Bfrtip',
    buttons = c('copy', 'csv', 'excel'), 
    scrollX = TRUE, 
    selection="multiple"
    )
  )

And here is a pairplot showing the distribution and relationships between variables in the dataset.

Show code
# uploading library for the pairplot data visualization
library(GGally)

# defining custom function for diagonal continuous variable chart  
my_dens <- function(data, mapping) {
  ggplot(data = data, mapping = mapping) +
    geom_density(alpha = 0.6, color = NA) 
}

# pairplot
GGally::ggpairs(
  data = data,
  title = "Police cadet evaluation dataset",
  mapping=ggplot2::aes(fill = FinalE),
  lower=list(
    combo = wrap("facethist", binwidth=1, alpha = 0.6),
    continuous = wrap("points", alpha = 0.3, size = 0.7),
    discrete = wrap("facetbar", alpha = 0.6)
    ),
  upper=list(
    discrete = wrap("box", alpha = 0.6),
    combo = wrap("box", alpha = 0.6)
  ),
  diag = list(
    continuous = my_dens,
    discrete = wrap("barDiag", alpha = 0.6)
    )
  ) +
  ggplot2::scale_fill_manual(values=c("Fail" = "#e53935", "Pass" = "#00897b")) +
  labs(caption = "\nThe color indicates the pass/fail result of the final evaluation, the target attribute.") +
  ggplot2::theme(
    plot.title = element_text(color = '#2C2F46', face = "plain", size = 19, margin=margin(0,0,12,0)),
    plot.caption = element_text(color = '#2C2F46', face = "plain", size = 12, hjust = 0),
    plot.title.position = "plot",
    plot.caption.position =  "plot"
  )

If you want to download the dataset, you can do so here via the table above or via my GitHub page where you can also find more information about the dataset. Happy analysis 😉

Citation

For attribution, please cite this work as

Stehlík (2022, Oct. 24). Ludek's Blog About People Analytics: Police cadet evaluation dataset. Retrieved from https://blog-about-people-analytics.netlify.com/posts/2022-10-24-police-cadet-evaluation-dataset/

BibTeX citation

@misc{stehlík2022police,
  author = {Stehlík, Luděk},
  title = {Ludek's Blog About People Analytics: Police cadet evaluation dataset},
  url = {https://blog-about-people-analytics.netlify.com/posts/2022-10-24-police-cadet-evaluation-dataset/},
  year = {2022}
}