- This readme file contains the agenda for the 3-day training session
- Notebooks - example notebooks we use in the training
- Presentations - presentations (will be added)
The example notebooks use the Python recordlinkage package. You may be able to simply pip install recordlinkage to add it to your local machine
Optionally, anaconda provides a nice package management system and you can create virtual environments for different types of analyses. This conda cheatsheet includes commands for setting up and creating virtual environments.
- Create named env:
conda create --name py3-rl python=3.6 - Activate new env:
source activate py3-rl(mac) orconda activate py3-rl(linux/windows) - Add recordlinkage:
pip install recordlinkage - Add ipykernel for step 5:
conda install ipykernel - Make kernel of new nev available to jupyter
python -m ipykernel install --user --name py3-rl --display-name "py3-RecLink" - Launch Jupyter notebooks:
jupyter notebook