References
Kaggle. Health Analytics. India. Annual Health Survey (AHS)
https://www.kaggle.com/datasets/rajanand/key-indicators-of-annual-health-survey
Kaggle. Health Analytics. India. Annual Health Survey (AHS)
https://www.kaggle.com/datasets/rajanand/key-indicators-of-annual-health-survey
.
├── assets
├── models
├── notebooks
├── submissions
├── .gitattributes
├── .gitignore
├── CITATION.cff
├── LICENSE
├── README.md
├── __init__.py
├── pyproject.toml
└── requirements.txt
4 directories, 8 filesClone the GitHub repository and generate a Python virtual environment. Install required software dependencies. Runs in Jupyter Notebook, Jupyter Lab, and Bash command-line environments.
# Clone repository
git clone https://github.com/rcghpge/capstoneproject.git
cd capstoneproject
# Generate pip venv
python -m venv venv
# Activate venv
source venv/bin/activate
# Install dependencies
pip install -e .[dev]
# Environment Checks
python -c "from models import *; print('✅ Model import dependencies OK')"
bandit -r models/
bandit -r models/ -f json -o security-report.json # secure report summary
pip-audit -r requirements.txt
pip check
pytest --cov=models/ --cov-report=term-missing
# Run Python models and Launch Jupyter for EDA
jupyter lab notebooks/ # run in a web browser environment
jupyter lab notebooks/ --no-browser # intiliaze Jupyter server with no web browser
jupyter lab/models/
jupyter lab/models/ --no-browserLicense: MIT
