Open Science and reproducibility
python
Create script called run_all_experiments.py
import subprocess as sp
for file in ["file1", "file2"]:
sp.run(["python3", "code/run-pre-process.py", f"raw_data/{file}.txt", "-o", f"data/{file}.csv"])
sp.run(["python3", "code/run-analysis.py", f"data/{file}.csv", "-o", "results/{file}.csv"])
sp.run(["python3", "code/run-post-process.py", f"results/{file}.csv", "-o", "figures/{file}.png"])