Tepper School of Business, Carnegie Mellon University
- Open any notebook in Google Colab.
- Run the first two code cells — they will automatically:
- Install
tprstatsfrom GitHub - Download required data files from this repository
- Install
- No Google Drive mounting needed!
- Clone this repository:
git clone https://github.com/mhnam/statistical-decision-making.git cd statistical-decision-making - Create a virtual environment and install dependencies:
python -m venv .venv source .venv/bin/activate # macOS/Linux # .venv\Scripts\activate # Windows pip install -r requirements.txt
- Open any notebook in the
notebooks/orassignments/folder.
├── data/ # All course datasets (.xlsx)
├── notebooks/ # Lecture notebooks (01_notebook.ipynb, 02_notebook.ipynb, ...)
├── assignments/ # Assignment starter notebooks and solutions
├── guides/ # Setup guides (e.g., install_tprstats.ipynb)
└── */legacy/s25/ # Previous semester (Spring 2025) materials
Each notebook includes a setup cell that handles data loading automatically. The cell detects whether you are running in Google Colab or locally. If data files are not found locally, they will be downloaded from this GitHub repository automatically.