This repository is a starting point for your Fundamentals of Data Mining mini project. It includes a clean folder layout, starter code, and step-by-step commands.
- Install Python 3.10 or newer
- Install Git
- (Recommended) Visual Studio Code + Python & Jupyter extensions
Windows (PowerShell):
python -m venv .venv
.\.venv\Scripts\Activate.ps1macOS / Linux:
python3 -m venv .venv
source .venv/bin/activatepip install -U pip
pip install -r requirements.txtPlace your CSV(s) into data/raw/ (e.g., StormEvents_details-ftp_v1.0_d2010_*.csv).
jupyter notebook notebooks/01_eda.ipynbuvicorn api.main:app --reloadstreamlit run app/ui.py