This repository contains 930 Jupyter notebooks across 188 topics. These notebooks are a mix of experiments, drafts, and useful scripts for data analysis, visualization and storytelling.
Note: This is a personal sandbox for learning and experimenting. Some notebooks may be incomplete or outdated.
This repository uses uv for dependency management.
uv is a package manager for Python that simplifies the setup of virtual environments and dependency management.
To install uv, follow the instructions on the official website.
brew install uvexport UV_VENV_PATH=".venv"
uv venv
source .venv/bin/activateIf you have a requirements.txt file:
uv pip install -r requirements.txtFor individual package installation:
uv add pandas numpy matplotlib jupyterlabuv run jupyter labuv lockuv sync