Identifying Custom Australian Licence Plates

Identifying Custom Australian Licence Plates

In case this saves anyone some time, here's a quick bit of regex and Python code for identifying if a given licence plate is standard or custom (personalised) in a given state. In case this saves anyone some time, here's a quick bit of regex and Python code for identifying if a given licence plat......

Machine Learning Workflows with Julia

Machine Learning Workflows with Julia

I have a simple machine learning workflow that I recreate whenever I'm testing something new. I take some interesting data and a target, throw in some pre-processing, tune hyperparameters with cross-validation, and train a random forest. It's all the basic ingredients for a machine learning model......

Determining system dependencies for R projects

Determining system dependencies for R projects

Locking down R package dependencies and versions is a solved problem, thanks to the easy-to-use renv package. System dependencies --- those Linux packages that need to be installed to make certain R packages work --- are a bit harder to manage. Locking down R package dependencies and versions i......