Reproducibility
graph LR
A[Inputs] --> B[Processes]
B --> C[Outputs]
Reproducibility can be defined as:
Given the inputs and process definitions, it's possible to generate the same outputs.
Basically this means that if you have the code and data and run them, you get the same figures, tables, numerical results, etc.
Inputs are not limited to code and data, however. They may include, but are not limited to:
- Raw data files
- Source code
- Configuration files
- Text files, e.g., for a manuscript
- Diagrams created with drawing tools like Inkscape
- Computational environment specifications
- Word documents
- CAD files
- Computational meshes, if created manually/interactively
In other words, the inputs are primary artifacts. They were created from nothing or acquired from elsewhere, either by humans or AI agents.
The main output of a research project is the article itself, which is typically in PDF form. This output is typically composed of the text input and some intermediate outputs or secondary artifacts like figures, tables, and numerical results.
Process definitions describe how to turn the inputs into the outputs. For example:
Run the analysis script with these arguments.
Create the computational environment from the requirements.txt file.
Compile the LaTeX source file to generate the PDF.
Measuring reproducibility
A more measurable definition of reproducibility would be:
The inverse of the time it takes to verify the outputs truly reflect the inputs and process definitions.
One way to verify a project's reproducibility is to rerun all the processes and compare the outputs to those published. However, this can take a long time for projects with computationally expensive steps.
Thankfully,
this definition leaves open the possibility of not needing to rerun expensive
processes by having some sort of traceability on the outputs,
e.g., a dvc.lock file in a Calkit project.
If we can trace through through the entire path,
we can know the exact provenance.
With this measurement methodology, a study that shares no code and data will be very hard to reproduce, if not impossible. One that shares data but no code will be a little better.
Sharing code, environment lock files, and a fully-automated
pipeline with file content-based tracking
is the gold standard, however.
Barring misconduct,
provenance can be verified with a single command
(calkit status for a Calkit project).
Consequences of poor reproducibility
On obvious consequence of poor reproducibility is that the research may not be trustworthy. The steps claimed to have been taken to produce evidence to back up a conclusion may not have actually been taken as described. This could simply be due to a lack of knowledge, memory, or they may be described imprecisely. Peer review is supposed to catch these sorts of instances in theory, but doing a reproducibility check is often a large undertaking.
Furthermore, poor reproducibility indicates inefficient and error-prone project management practices. If multiple scripts/notebooks/commands need to be rerun to verify all outputs are up-to-date, it's more likely that they will be skipped, especially if they are expensive. The project may therefore end up in an inconsistent state, which may lead to publication of incorrect results. When iteration is slow and/or painful, fewer iterations will be done, and more iterations typically results in higher quality. It is therefore important to automate research projects, i.e., to keep them highly reproducible throughout their life cycles.