My Blog
Synthetic Data: The Complete Series
The jumping off point for my synthetic data series, covering the basics of synthetic data generation and its applications.
Representativeness in Synthetic Data: What It Means and How to Measure It
Understanding the concept of representativeness in synthetic data and the methods used to measure it.
Why Rust for Data-Intensive Applications
Explores why Rust matters for research data pipelines - not for performance, but for correctness. Learn how Rust's type system prevents data failures.
Your Errors Are Data Too
How Rust's error handling patterns let you treat errors as structured observations about your data - capturing context, categorising failures, and producing data quality reports as first-class pipeline outputs.
Why Use Newtypes? Encoding Domain Knowledge in the Type System
How Rust's newtype pattern lets you encode domain knowledge - valid ranges, clinical thresholds, meaningful operations - directly into the type system, so the compiler enforces what you already know to be true about your data.
Serde Rust: Data Serialisation for Data Scientists
Practical Rust patterns for building validated data pipelines with Serde. Custom deserialisers, domain-constrained types, streaming CSV processing, and structured error handling for messy real-world data.
How Synthetic Data Is Used in Healthcare, Research and Beyond
Explore real-world use cases for synthetic data in healthcare, clinical trials, finance and more.
Accidental Functional Programming in Rust (From an Epidemiologist's Perspective)
Rust quietly pushes you into functional patterns. An epidemiologist explains Result, match, enums, iterators, and when readability beats idioms.
How to Create a Codelist
A practical guide to creating codelists from scratch for health data research.