About Me

I am a dedicated and experienced data professional with a passion for exploring, analysing, and solving problems using data. I have over 13 years’ experience in data science and statistical roles and nearly 10 years as an accredited Integrated Data Infrastructure (IDI) researcher. During this time I have honed my skills in leveraging data to drive actionable insights.

I have good time management and a strong work ethic with a drive to produce high-quality work and meet deadlines. I have a strong customer focus with experience working with a range of stakeholders – especially from my time as a data science consultant. I look to understand a customer’s needs and work closely with them to create a product that will meet those needs.

Currently serving as an Analytics Lead at Nicholson Consulting, I play a key role in leading and overseeing data projects. I bring a versatile skill set and proficiency in a wide range of analytical software, enabling me to effectively transform raw data into valuable insights that resonate with diverse audiences, including non-technical stakeholders.

Experience

Analytics Lead

November 2021 - Present
Nicholson Consulting

As an Analytics Lead at Nicholson Consulting, I play a key role in leading data and analytical projects working closely with the CEO and other Analytics Leads. Most project teams I lead range in size from 3-5 data scientists. As well as this, I am a people manager for 2 staff members. Using my technical expertise, I support my team to improve their proficiency in a wide range of analytical software, enabling them to generate valuable insights that resonate with diverse audiences, including non-technical stakeholders.

Senior Data Scientist

September 2019 - November 2021
Nicholson Consulting

As a Senior Data Scientist at Nicholson Consulting, my duties involved having a lead role collaborating with clients in delivering various analytical projects – primarily using the IDI.

Data Analyst

January 2018 - September 2019
Electricity Authority

As a Data Analyst at the Electricity Authority, my duties involved analysing and building models using New Zealand electricity data. I gained experience using complex optimisation modelling techniques.

Senior Analyst

April 2016 - December 2017
Social Investment Agency/Unit

In April 2016, the Social Sector Investment Change Program became the Social Investment Unit and, in July 2017, the Social Investment Unit became the Social Investment Agency. I was seconded as a Senior Analyst. My responsibilities in this role included using Statistics NZ's Integrated Data Infrastructure (IDI) to explore and understand the effectiveness of government investment in social services.

Analyst

October 2015 - March 2016
Social Sector Investment Change Program (SSICP)

From October 2015 I was part of the Social Sector Investment Change Programme (SSICP). My role involved coordinating and helping to project manage a software proof-of-concept which included stakeholder engagement with both NGOs and a variety of government agencies.

Analyst

September 2015
New Zealand Treasury

In September 2015 I was located at the Treasury to work with the Analytics and Insights team. I helped to analyse and understand the life pathways of young New Zealanders using Statistics New Zealand’s Integrated Data Infrastructure (IDI).

Forecasting and Costing Analyst

January 2015 - December 2017
Ministry of Social Development (MSD)

My role at the Ministry of Social Development was as a Forecasting and Costing Analyst. My responsibilities included regular forecasting of Vote Social Development appropriations and cost modelling of benefit-related policies.

Statistical Analyst

October 2011 - December 2014
Statistics New Zealand

I worked as a Statistical Analyst at Statistics New Zealand. I worked in the Statistical Methods unit where my role utilised my expertise in a variety of methodological areas.

Projects

The following are a collection of side projects I previously worked on in my spare time.

vplyr - uses R, shiny and annyang to analyse and visualise data using speech recognition - only works with Chrome browser (code).
Japan Photo Diary - uses the Leaflet.Photo library to showcase a selection of photos from our holiday in Japan in 2017.
NZ's Highest Risk Intersections (2003-2012) - uses R, shiny and leaflet to visualise the highest risk intersections in New Zealand during the period 2003 to 2012.
Cricket Grounds Around the World (with D3.js) - uses D3js to draw the shapes and sizes of cricket grounds from around the world (code).
Wellington R Users Group (WRUG) Community Questionnaire - This is a shiny app I created to understand the topics that Wellington's R community would most like to learn about.
WRUG Questionnaire Results - created using rmarkdown to visualise the results from the WRUG community questionnaire.

Skills & Proficiency

R & Shiny

SAS

Statistical Analysis

Project Management

SQL

JavaScript & HTML

Git

Python

Node.js

Published Work






R Playground

# This will get executed each time the exercise gets initialized # Have a go! library(ggplot2) library(dplyr) ggplot(mpg, aes(reorder(class, class, function(x) length(x)))) + geom_bar(fill = "grey", width = 0.6) + geom_bar(data = filter(mpg, class == "suv"), fill = "steelblue", width = 0.6) + coord_flip() + ggtitle("SUVs make up the largest number of cars in this dataset!") + xlab("Class") + theme_minimal() + theme(panel.grid = element_blank(), panel.background = element_rect(fill = "transparent", colour = NA), plot.background = element_rect(fill = "transparent", colour = NA), axis.line.x = element_line(colour = "grey"), axis.ticks.x = element_line(colour = "grey") )