Installation instructions:
- Install Python 3.7.0 if necessary.
- Create a new Python virtual environment named 've' in the 'chapter_13_examples' directory:
$ python3 -m venv ve - Activate the virtual environment:
$ source ve/bin/activate - Upgrade pip:
(ve)$ pip install --upgrade pip - Install required packages:
(ve)$ pip install -r requirements.txt
Instructions for running scripts:
- Activate the virtual environment:
$ source ve/bin/activate - Run the desired scripts:
(ve)$ python example_13_1.py
(ve)$ python figure_13_1.py --confidence_intervals
(ve)$ python figure_13_2.py --confidence_intervals - Deactivate the virtual environment when finished:
(ve)$ deactivate