Jack Davison is an Air Quality Data Analyst based in the United Kingdom. He has interest in data visualisation and package development, as well as teaching R/data analysis to scientific and non-programmer audiences.

Education

University of York | York, United Kingdom

  • PhD in Atmospheric Chemistry | 2022

  • MChem in Chemistry | 2018

Other Work


This website was built using Quarto, the next generation of the rmarkdown document preparation system.

One quality-of-life feature of this website is code-linking. Try clicking on package names (e.g., gt) or function names (e.g., gt::gt()) to be taken to their help pages. Links work both in-line and in code chunks, such as the one below.

Furthermore, code chunks can be easily copied by using the clipboard 📋 icon at the top right of the code chunk, when hovered over.

library(dplyr)

starwars |> 
  group_by(species) |> 
  summarise(avg_height = mean(height, na.rm = T),
            skin_colors = n_distinct(skin_color))