Data for the drivers license details as per the SQL Murder (http://mystery.knightlab.com/walkthrough.html) and here (https://github.com/NUKnightLab/sql-mysteries). Simon Willison made an online version of the SQL game (https://sql-murder-mystery.datasette.io/sql-murder-mystery).

drivers_license

Format

A data set with nine variables: id, age, height, eye_color, hair_color, gender, plate_number, car_make and car_model.

Details

How to play the game ....

This package makes the data of the SQL Murder Mystery available in R.

There's been a Murder in SQL City! The Murder Mystery is designed to be both a self-directed lesson to learn R concepts and is also a fun game for experienced R users to solve an intriguing crime. Please read the Readme file for the details!

Examples

# Load a bit of the dataset: drivers_license head(drivers_license)
#> # A tibble: 6 x 9 #> id age height eye_color hair_color gender plate_number car_make #> <int> <int> <int> <chr> <chr> <chr> <chr> <chr> #> 1 100280 72 57 brown red male P24L4U Acura #> 2 100460 63 72 brown brown female XF02T6 Cadillac #> 3 101029 62 74 green green female VKY5KR Scion #> 4 101198 43 54 amber brown female Y5NZ08 Nissan #> 5 101255 18 79 blue grey female 5162Z1 Lexus #> 6 101494 48 55 blue red female 81X1N7 Kia #> # ... with 1 more variable: car_model <chr>