Phase 6: Setup Jupyter Notebooks Infrastructure #71

Closed
opened 2026-01-17 16:55:36 +00:00 by lmiranda · 1 comment
Owner

Overview

Create the notebook directory structure and README for documenting Toronto Neighbourhood Dashboard visualizations.

Files to Create

  • notebooks/README.md - Overview and usage instructions
  • notebooks/overview/ - Directory for overview tab notebooks
  • notebooks/housing/ - Directory for housing tab notebooks
  • notebooks/safety/ - Directory for safety tab notebooks
  • notebooks/demographics/ - Directory for demographics tab notebooks
  • notebooks/amenities/ - Directory for amenities tab notebooks

Acceptance Criteria

  • notebooks/ directory structure created per implementation plan
  • notebooks/README.md explains notebook purpose and template usage
  • Notebook template documented (Data Reference + Data Visualization sections)
  • Each subdirectory has placeholder .gitkeep or initial notebook

Technical Notes

Per implementation plan, each notebook documents:

  1. Data Reference: Source tables, SQL query, transformation steps, sample data
  2. Data Visualization: Figure factory import and rendering

Labels: Type/Feature, Priority/Medium, Complexity/Simple, Efforts/XS, Component/Docs, Tech/Python

## Overview Create the notebook directory structure and README for documenting Toronto Neighbourhood Dashboard visualizations. ## Files to Create - `notebooks/README.md` - Overview and usage instructions - `notebooks/overview/` - Directory for overview tab notebooks - `notebooks/housing/` - Directory for housing tab notebooks - `notebooks/safety/` - Directory for safety tab notebooks - `notebooks/demographics/` - Directory for demographics tab notebooks - `notebooks/amenities/` - Directory for amenities tab notebooks ## Acceptance Criteria - [ ] `notebooks/` directory structure created per implementation plan - [ ] `notebooks/README.md` explains notebook purpose and template usage - [ ] Notebook template documented (Data Reference + Data Visualization sections) - [ ] Each subdirectory has placeholder `.gitkeep` or initial notebook ## Technical Notes Per implementation plan, each notebook documents: 1. **Data Reference**: Source tables, SQL query, transformation steps, sample data 2. **Data Visualization**: Figure factory import and rendering **Labels:** Type/Feature, Priority/Medium, Complexity/Simple, Efforts/XS, Component/Docs, Tech/Python
Author
Owner

Completed:

  • Created notebooks/ directory structure with 5 subdirectories
  • Added notebooks/README.md with template and usage docs
  • Added .gitkeep files to all subdirectories

Structure:

notebooks/
├── README.md
├── overview/.gitkeep
├── housing/.gitkeep
├── safety/.gitkeep
├── demographics/.gitkeep
└── amenities/.gitkeep
Completed: - Created `notebooks/` directory structure with 5 subdirectories - Added `notebooks/README.md` with template and usage docs - Added `.gitkeep` files to all subdirectories Structure: ``` notebooks/ ├── README.md ├── overview/.gitkeep ├── housing/.gitkeep ├── safety/.gitkeep ├── demographics/.gitkeep └── amenities/.gitkeep ```
Sign in to join this conversation.