A replication of the results in Matt Parker’s video: https://youtu.be/aokNwKx7gM8
library(tidyverse)
#> Warning: package 'tidyr' was built under R version 4.0.2
# Download the raw data from Matt's Dropbox link
file_url <- "https://dl.dropboxusercontent.com/s/7gusbewresl6zsg/Kent%20County%20Precinct%20Data%20from%20Stand-up%20Maths%20video.xlsx"
file <- tempfile(fileext = ".xlsx")
r <- httr::GET(file_url, httr::write_disk(file))