├── README.md ├── admin ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── environment.yml ├── gitter_vmbot.ipynb ├── slack_vmbot.ipynb └── vms.py ├── data ├── README.md ├── establishments_20160617.csv ├── inspections_20160617.csv └── violations_20160617.csv ├── notebooks ├── inspection │ ├── inspection_dashboard_complete.ipynb │ ├── inspection_dashboard_draft.ipynb │ └── inspection_data_prep.ipynb ├── inspection_dashboard.ipynb └── other │ ├── intro_slides.ipynb │ ├── simple_plot_dashboard.ipynb │ └── simple_weather_dashboard.ipynb └── setup ├── copy-notebooks.sh ├── install-docker.sh ├── post-install.sh ├── setup-credentials.py └── setup-jupyter.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/README.md -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/Dockerfile -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/docker-compose.yml -------------------------------------------------------------------------------- /admin/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/environment.yml -------------------------------------------------------------------------------- /admin/gitter_vmbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/gitter_vmbot.ipynb -------------------------------------------------------------------------------- /admin/slack_vmbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/slack_vmbot.ipynb -------------------------------------------------------------------------------- /admin/vms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/admin/vms.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/data/README.md -------------------------------------------------------------------------------- /data/establishments_20160617.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/data/establishments_20160617.csv -------------------------------------------------------------------------------- /data/inspections_20160617.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/data/inspections_20160617.csv -------------------------------------------------------------------------------- /data/violations_20160617.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/data/violations_20160617.csv -------------------------------------------------------------------------------- /notebooks/inspection/inspection_dashboard_complete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/inspection/inspection_dashboard_complete.ipynb -------------------------------------------------------------------------------- /notebooks/inspection/inspection_dashboard_draft.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/inspection/inspection_dashboard_draft.ipynb -------------------------------------------------------------------------------- /notebooks/inspection/inspection_data_prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/inspection/inspection_data_prep.ipynb -------------------------------------------------------------------------------- /notebooks/inspection_dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/inspection_dashboard.ipynb -------------------------------------------------------------------------------- /notebooks/other/intro_slides.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/other/intro_slides.ipynb -------------------------------------------------------------------------------- /notebooks/other/simple_plot_dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/other/simple_plot_dashboard.ipynb -------------------------------------------------------------------------------- /notebooks/other/simple_weather_dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/notebooks/other/simple_weather_dashboard.ipynb -------------------------------------------------------------------------------- /setup/copy-notebooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/setup/copy-notebooks.sh -------------------------------------------------------------------------------- /setup/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/setup/install-docker.sh -------------------------------------------------------------------------------- /setup/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/setup/post-install.sh -------------------------------------------------------------------------------- /setup/setup-credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/setup/setup-credentials.py -------------------------------------------------------------------------------- /setup/setup-jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/tutorial-dashboards-declarativewidgets/HEAD/setup/setup-jupyter.sh --------------------------------------------------------------------------------