Reproducible Research – when your results can’t be reproduced?
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Even most sophisticated machine learning methods, most beautiful visualisations and perfect datasets can be useless if you do your research carelessly and ignore the context of your code execution. In this article, you will read about a few situations that can destroy your reproducibility and learn how to resolve and avoid them in the future.
3 danger zones
There are three places where things can go wrong if you don’t pay attention:
- R session context
- Operating System (OS) context
- Data versioning
In this blogpost, I will focus on the first two. They are quite similar because both are related to software context of a research execution. While more and more data scientists pay attention to what happens in their R session, not many think about OS context, which can also significantly influence their research.
Data versioning is a huge topic itself and I will cover it in a separate article in the future. For now, let’s see some examples where things can go wrong, when you have different R session context or various Operating System configurations.
R session context
The basic elements of an R session context, that data scientists should be aware of are:
- R version
- Packages versions
- Using
set.seed()
for a reproducible randomisation - Floating point accuracy
R version
Not many monitor this R language change log on a regular basis, but sometimes a crucial changes are made and can lead to a failure in your code. One of such situation is described here. Change in R(3.2.1) for “nested arima model has higher log-likelihood”, led to inconsistency of results for arima calculations with d >= 1.
Packages versions
Now, let’s see an example with a changing package version. I am going to use dplyr
in versions 0.4.0
and 0.5.0
:
dplyr 0.4.0
dplyr 0.5.0
whoa! Version 0.5.0 introduced functionality breaking changes and result is now completely different.
set.seed()
When your code uses a randomisation and you want to have reproducible results, it is important to remember about setting a seed.
…and with setting seed:
Random numbers returned by generator are in fact a sequence of numbers that can be reproduced. Setting a seed informs a generator where to start.
Floating point accuracy
Pay attention how expressions on floating point numbers are implemented. Let’s assume you want to implement an algorithm described in a recently published scientific paper. You get unexpected results in some cases and now try to debug it. And you eventually get this:
what? It can be solved by testing for “near equality”:
More about a floating point arithmetic can be found here.
Operating system context
When your research is shared with others and you can’t predict which operating system someone is going to use, many things can go wrong. Any difference in one of the following elements:
- System packages versions
- System locale
- Environment variables
can result in different execution results.
Many R packages depend on system packages. You can view it in a package DESCRIPTION file under the parameter SystemRequirements
. Let’s look at the example with png
package and running it on two different operating systems.
Package png
DESCRIPTION file:
Let’s assume we wrote custom function savePlotToPNG
that saves a plot to a file. We want to write an unit test for it and the idea is to compare produced result with a previously generated reference image. We generate reference plots on Ubuntu 16.04:
…and then we run tests on Debian 8 Jessie. We use exactly the same version of png
package:
…plots don’t match! This is caused by different libpng
system package versions.
Locale and system variables
Ubuntu:
Windows:
…okayyy 🙂 String sorting in R is based on the locale which is different for Windows and Linux systems. Read more about setting locales here.
Tools for R session level reproducibility
Data scientist should be aware of the traps described above. These are the foundations of the reproducible research. Below there is a list of tools that support managing packages versions:
Packrat - popular package that allows to create and manage a private library attached to your project.
Switchr - handy abstraction over .libPaths()
, lib.loc
and other lower level library settings. Helpful in creating and managing libraries.
Checkpoint - helpful when you need to find older versions of a specific package.
Tools for OS level reproducibility
The best approach is to do your research in an isolated environment, that can be shared as an image. Inside of this environment you can also use any tool for R session level reproducibility, like Packrat, Switchr or Checkpoint.
To create an isolated environment you can use virtualization or conteinarization. There are many tools that can be used for that: Vagrant, Docker, rkt and many more. I recommend using Docker because it’s easy to use and has a good community support.
Example structure of your ~/project
:
Let’s look at a sample Dockerfile
that describes the steps necessary for recreation of an isolated environment:
install_libraries.R
contains code that reproduces an R environment. It can be either some Packrat code or something like this:
After that it’s enough to run a following command to build an image:
When an image is ready you should either save it as a file using docker save -o myimagename.img myimagename:1.0.0
or upload it to Docker Hub - steps described here.
Using a previously saved Docker image you can start a container with the following:
Because image is based on rocker/rstudio
, you can access an RStudio session via http://localhost:8787
(login rstudio
, password rstudio
). Your R/ directory will be available inside the running container via /R
path. Awesome, isn’t it?!
With a Docker image like this, you have a control over whole software context needed for a reproducible research. You can easily extend it with more packages and share it without a fear of losing reproducibility. I recommend this approach in any data science project, which results must be reproduced on more than one machine and also when working in a bigger data science team.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.