
This is looking great @TomHodson. Feel free to review and request changes to my updates where I've made minor changes to the text.
🎲 ⛓️ 👉 🧪 Markov Chain Monte Carlo for fun and profit
Using random numbers to do all the things.
This is an exemplar project designed to showcase best practices in developing scientific software as part of the ReCoDE Project at Imperial College London.
You do not need to know or care about Markov Chain Monte Carlo for this to be useful to you.
Rather this project is primarily designed to showcase the tools and practices available to you when developing scientific software projects. Maybe you are a PhD student just starting, or a researcher just about to embark on a larger scale software project - there should be something interesting here for you.
Table of contents
- A short introduction
- Organising code and python packaging
- Testing your code
- Python packages and environments: Pip, Conda, setup.py and all that.
- Planning out a larger software project
- Using Jupyter Notebooks during development
- Documentation
- Reproducibility of software outputs
- Citing software in a publication: CITATION.cff
How to use this repository
Take a look at a the table of contents below and see if there are any topics that might be useful to you. The actual code lives in ./code
and the documentation in ./learning
When you're ready to dive in you have three options:
1. Launch them in Binder (easiest but a bit slow)
2. Clone the repo and run the jupyter notebooks locally. (Faster but requires you have python/jupyter installed)
git clone
cd
pip install -r requirements.txt
jupyter lab
3. View them non-interactively in GitHub via the links in the table of contents
The map
.
├── CITATION.cff # This file describes how to cite the work contained in this repository.
├── LICENSE # Outlines what legal rights you have to use this software.
├── README.md # You are here!
├── code
│ ├── README.md # Human readable information about the little python package in here
│ ├── pyproject.toml # Machine readable information about that same package
│ ├── setup.cfg # Tells Pip how to install this package
│ ├── src
│ │ └── MCFF # The actual code lives in here!
│ └── tests # automated tests for the code
└── learning # Supporting documentation
External Resources
- The Turing Way has tons of great resources on the topics discussed here.
- Intermediate Research Software Development in Python