BSc Biology, MSc Ecology, MPH, PhD in statistics
Data manager and statistician for the CHAI project
Christa said I was an “OpenAQ data wrangler extraordinaire”… LIES!
But I like to wrangle OpenAQ extraordinary data!
Language for statistical computing
Data wrangling, modeling, visualization
Reporting, interactive plots and apps
Collaborative effort like Wikipedia
An add-in to R
A collection of code and documentation
library("purrr")
library("dplyr")
library("ropenaq")
count <- aq_measurements(city = "Sarajevo",
country = "BA")
count <- attr(count, "meta")$found
sarajevo <- 1:(ceiling(count/10000)) %>%
map(function(page){
aq_measurements(city = "Sarajevo",
country = "BA",
limit = 10000,
page = page)
}) %>%
bind_rows()Review of the software
Improvement for robustness and ease of use
Part of an open science project!
Datacamp, Coursera
Hadley Wickham’s books
Online tutorials
Report bugs!
Help build the documentation.
Show me examples of figures, for adding how-to in the documentation.