├── .gitignore ├── LICENSE ├── README.rst ├── data ├── eclipses_21C.csv ├── macro.csv └── mri.nc ├── datasets.yml ├── download_sample_data.py ├── environment.yml ├── notebooks ├── 00-welcome.ipynb ├── 01-introduction-to-elements.ipynb ├── 02-customizing-visual-appearance.ipynb ├── 03-exploration-with-containers.ipynb ├── 04-working-with-tabular-data.ipynb ├── 05-working-with-gridded-data.ipynb ├── 06-custom-interactivity.ipynb ├── 07-working-with-large-datasets.ipynb ├── 08-deploying-bokeh-apps.ipynb ├── README.md ├── apps │ ├── periodic_app.py │ ├── player_app.py │ └── server_app.py └── assets │ ├── bokeh_logo.svg │ ├── dask.png │ ├── dask.svg │ ├── datashader.png │ ├── datashader_pipeline.png │ ├── header_logo.png │ ├── holoviews.png │ ├── hv+bk.png │ ├── matplotlib_logo.png │ ├── numba.png │ ├── tutorial_app.gif │ └── xarray.png └── solutions ├── 00-welcome-with-solutions.ipynb ├── 01-introduction-to-elements-with-solutions.ipynb ├── 02-customizing-visual-appearance-with-solutions.ipynb ├── 03-exploration-with-containers-with-solutions.ipynb ├── 04-working-with-tabular-data-with-solutions.ipynb ├── 05-working-with-gridded-data-with-solutions.ipynb ├── 06-custom-interactivity-with-solutions.ipynb ├── 07-working-with-large-datasets-with-solutions.ipynb ├── 08-deploying-bokeh-apps-with-solutions.ipynb ├── README.md ├── apps ├── periodic_app.py ├── player_app.py ├── player_app_with_solutions.py ├── server_app.py └── server_app_with_solutions.py └── assets ├── bokeh_logo.svg ├── dask.png ├── dask.svg ├── datashader.png ├── datashader_pipeline.png ├── header_logo.png ├── holoviews.png ├── hv+bk.png ├── matplotlib_logo.png ├── numba.png ├── tutorial_app.gif └── xarray.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/README.rst -------------------------------------------------------------------------------- /data/eclipses_21C.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/data/eclipses_21C.csv -------------------------------------------------------------------------------- /data/macro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/data/macro.csv -------------------------------------------------------------------------------- /data/mri.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/data/mri.nc -------------------------------------------------------------------------------- /datasets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/datasets.yml -------------------------------------------------------------------------------- /download_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/download_sample_data.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/00-welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/00-welcome.ipynb -------------------------------------------------------------------------------- /notebooks/01-introduction-to-elements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/01-introduction-to-elements.ipynb -------------------------------------------------------------------------------- /notebooks/02-customizing-visual-appearance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/02-customizing-visual-appearance.ipynb -------------------------------------------------------------------------------- /notebooks/03-exploration-with-containers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/03-exploration-with-containers.ipynb -------------------------------------------------------------------------------- /notebooks/04-working-with-tabular-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/04-working-with-tabular-data.ipynb -------------------------------------------------------------------------------- /notebooks/05-working-with-gridded-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/05-working-with-gridded-data.ipynb -------------------------------------------------------------------------------- /notebooks/06-custom-interactivity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/06-custom-interactivity.ipynb -------------------------------------------------------------------------------- /notebooks/07-working-with-large-datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/07-working-with-large-datasets.ipynb -------------------------------------------------------------------------------- /notebooks/08-deploying-bokeh-apps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/08-deploying-bokeh-apps.ipynb -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/apps/periodic_app.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/apps/player_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/apps/player_app.py -------------------------------------------------------------------------------- /notebooks/apps/server_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/apps/server_app.py -------------------------------------------------------------------------------- /notebooks/assets/bokeh_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/bokeh_logo.svg -------------------------------------------------------------------------------- /notebooks/assets/dask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/dask.png -------------------------------------------------------------------------------- /notebooks/assets/dask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/dask.svg -------------------------------------------------------------------------------- /notebooks/assets/datashader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/datashader.png -------------------------------------------------------------------------------- /notebooks/assets/datashader_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/datashader_pipeline.png -------------------------------------------------------------------------------- /notebooks/assets/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/header_logo.png -------------------------------------------------------------------------------- /notebooks/assets/holoviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/holoviews.png -------------------------------------------------------------------------------- /notebooks/assets/hv+bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/hv+bk.png -------------------------------------------------------------------------------- /notebooks/assets/matplotlib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/matplotlib_logo.png -------------------------------------------------------------------------------- /notebooks/assets/numba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/numba.png -------------------------------------------------------------------------------- /notebooks/assets/tutorial_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/tutorial_app.gif -------------------------------------------------------------------------------- /notebooks/assets/xarray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/notebooks/assets/xarray.png -------------------------------------------------------------------------------- /solutions/00-welcome-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/00-welcome-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/01-introduction-to-elements-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/01-introduction-to-elements-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/02-customizing-visual-appearance-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/02-customizing-visual-appearance-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/03-exploration-with-containers-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/03-exploration-with-containers-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/04-working-with-tabular-data-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/04-working-with-tabular-data-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/05-working-with-gridded-data-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/05-working-with-gridded-data-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/06-custom-interactivity-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/06-custom-interactivity-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/07-working-with-large-datasets-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/07-working-with-large-datasets-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/08-deploying-bokeh-apps-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/08-deploying-bokeh-apps-with-solutions.ipynb -------------------------------------------------------------------------------- /solutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/README.md -------------------------------------------------------------------------------- /solutions/apps/periodic_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/apps/periodic_app.py -------------------------------------------------------------------------------- /solutions/apps/player_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/apps/player_app.py -------------------------------------------------------------------------------- /solutions/apps/player_app_with_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/apps/player_app_with_solutions.py -------------------------------------------------------------------------------- /solutions/apps/server_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/apps/server_app.py -------------------------------------------------------------------------------- /solutions/apps/server_app_with_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/apps/server_app_with_solutions.py -------------------------------------------------------------------------------- /solutions/assets/bokeh_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/bokeh_logo.svg -------------------------------------------------------------------------------- /solutions/assets/dask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/dask.png -------------------------------------------------------------------------------- /solutions/assets/dask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/dask.svg -------------------------------------------------------------------------------- /solutions/assets/datashader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/datashader.png -------------------------------------------------------------------------------- /solutions/assets/datashader_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/datashader_pipeline.png -------------------------------------------------------------------------------- /solutions/assets/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/header_logo.png -------------------------------------------------------------------------------- /solutions/assets/holoviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/holoviews.png -------------------------------------------------------------------------------- /solutions/assets/hv+bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/hv+bk.png -------------------------------------------------------------------------------- /solutions/assets/matplotlib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/matplotlib_logo.png -------------------------------------------------------------------------------- /solutions/assets/numba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/numba.png -------------------------------------------------------------------------------- /solutions/assets/tutorial_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/tutorial_app.gif -------------------------------------------------------------------------------- /solutions/assets/xarray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioam/scipy-2017-holoviews-tutorial/HEAD/solutions/assets/xarray.png --------------------------------------------------------------------------------