You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All generated outputs (PNG charts, CSV data, HTML reports) are automatically preserved in timestamped directories under `examples/outputs/YYYY-MM-DD_HH-MM/` with organized structure by city and analysis type. This ensures all intermediate analysis files are retained for review, comparison, and further processing.
107
+
105
108
## 📊 Example Outputs
106
109
107
110
### Performance Metrics (typical results)
@@ -177,19 +180,19 @@ All dependencies are defined in `../../pyproject.toml`:
177
180
### Development & Testing
178
181
```bash
179
182
# Quick validation (1-2 seconds)
180
-
uv run python quick_start.py
183
+
uv run python examples/scripts/quick_start.py
181
184
182
185
# Performance testing (5-10 seconds)
183
-
uv run python real_world_workflow.py
186
+
uv run python examples/scripts/real_world_workflow.py
184
187
```
185
188
186
189
### Production Analysis
187
190
```bash
188
191
# Comprehensive reporting (30-60 seconds)
189
-
uv run python algorithm_comparison.py
192
+
uv run python examples/scripts/algorithm_comparison.py
190
193
191
194
# Custom CLI workflows
192
-
uv run allocator cluster kmeans inputs/delhi-roads-1k.csv --n-clusters 7 --output results.csv
195
+
uv run allocator cluster kmeans examples/inputs/delhi-roads-1k.csv --n-clusters 7 --output results.csv
0 commit comments