├── requirements.txt ├── .gitignore ├── screenshots ├── screenshot1.png └── screenshot2.png ├── .cpanel.yml ├── templates ├── trends.html ├── continent_trends.html ├── country_comparison.html ├── index.html ├── continent_comparison.html └── base.html ├── README.md ├── static └── style.css ├── run.py └── road_death_2019.csv /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | plotly 3 | flask -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | data_analysis.ipynb 3 | -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom-kali/RoadTrafficAnalysisDashboard/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phantom-kali/RoadTrafficAnalysisDashboard/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /.cpanel.yml: -------------------------------------------------------------------------------- 1 | --- 2 | deployment: 3 | tasks: 4 | - export DEPLOYMENT_SOURCE=$PWD 5 | - export DEPLOYMENT_TARGET=$HOME/public_html 6 | - echo "Deploying from $DEPLOYMENT_SOURCE to $DEPLOYMENT_TARGET" 7 | - rsync -av --exclude='.git*' --exclude='.cpanel.yml' $DEPLOYMENT_SOURCE/ $DEPLOYMENT_TARGET/ 8 | -------------------------------------------------------------------------------- /templates/trends.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}Trends - Road Traffic Data Analysis{% endblock %} 4 | 5 | {% block content %} 6 |
Explore road traffic death rate data through various visualizations.
9 |Use the navigation bar to view different analyses.
11 |