Reproducibility in research

MACS 30500
University of Chicago

October 19, 2016

How to post code in a Github issue

Use three backtick marks ```, like so:

``` r

code

```

How to post code in a Github issue

Renders like:

output <- vector("double", ncol(mtcars))

for(i in seq_along(mtcars)){
  output[[i]] <- mean(mtcars[[i]], na.rm = TRUE)
}

output

Reproducibility

Data pipeline

  • Automating workflow via a pipeline
  • Output of a script becomes the input of another script
  • Run a single command or single program to reproduce the entire sequence

Demonstrate a reproducible project in R