{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "

Tutorial Index

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This tutorial will take you through all of the steps involved in exploring data of many different types and sizes, building simple and complex figures, working with billions of data points, adding interactive behavior, widgets and controls, and deploying full dashboards and applications.\n", "\n", "Sections 0-13 of this tutorial have been given as a 1-day course led by trained instructors. For self-paced usage, you should expect this\n", "material to take between 1 and 3 days if you do all of it. But sections 0, 1, 2, 3, and 4 contain the most crucial and basic introductory material, and going through those should take a couple of hours of study. All later sections can be studied as needed or skipped if not relevant.\n", "\n", "Once you've done section [0 Setup](00_Setup.html), you can choose between the default introductory section [01 Workflow Introduction](01_Workflow_Introduction), or [A2 Dashboard Workflow](A2_Dashboard_Workflow) if you are mainly interested in dashboards and want to get right into making widgets.\n", "\n", "We'll be using a wide range of open-source Python libraries, including the [Anaconda](http://anaconda.com)-supported tools\n", "[HoloViews](http://holoviews.org),\n", "[GeoViews](http://geoviews.org),\n", "[Bokeh](https://bokeh.pydata.org),\n", "[Datashader](http://datashader.org), and \n", "[Param](http://param.pyviz.org):\n", "\n", "\n", "\n", "These libraries have been carefully designed to work together to address a very wide range of data-analysis and visualization tasks, making it simple to discover, understand, and communicate the important properties of your data.\n", "\n", "\n", "\n", "This notebook serves as the homepage of the tutorial, including a table of contents listing each tutorial section." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Index and Schedule\n", "\n", "- *Overview*\n", " * **15 min**  [0 - Setup](./00_Setup.ipynb): Setting up the environment and data files.\n", " * **30 min**  [1 - Workflow Introduction](./01_Workflow_Introduction.ipynb): Overview of solving a simple but complete data-science task, using each of the main PyViz tools.\n", " * **5 min**    *Break*

\n", "\n", "- *Making data visualizable*\n", " * **30 min**  [2 - Annotating Data](./02_Annotating_Data.ipynb): Using HoloViews Elements to make your data instantly visualizable\n", " * **20 min**  [3 - Customizing Visual Appearance](./03_Customizing_Visual_Appearance.ipynb): How to change the appearance and output format of elements.\n", " * **10 min**  [*Exercise 1*](./exercises/Exercise-1-making-data-visualizable.ipynb)\n", " * **10 min**  *Break*

\n", " \n", "- *Datasets and collections of data* \n", " * **30 min**  [4 - Working with Tabular Data](./04_Working_with_Tabular_Data.ipynb): Exploring tabular/columnar data.\n", " * **10 min**  [5 - Working with Gridded Data](./05_Working_with_Gridded_Data.ipynb): Exploring a gridded (n-dimensional) dataset.\n", " * **20 min**  [*Exercise 2*](./exercises/Exercise-2-datasets-and-collections-of-data.ipynb)\n", " * **20 min**  [6 - Network Graphs](./06_Network_Graphs.ipynb): Exploring network graph data.\n", " * **20 min**  [7 - Geographic Data](./07_Geographic_Data.ipynb): Plotting data in geographic coordinates.\n", " * **20 min**  [*Exercise 3*](./exercises/Exercise-3-networks-and-geoviews.ipynb)\n", " * **15 min**  *Break*

\n", "\n", "- *Dynamic interactions*\n", " * **25 min**  [8 - Custom Interactivity](./08_Custom_Interactivity.ipynb): Using HoloViews \"streams\" to add interactivity to your visualizations.\n", " * **15 min**  [9 - Operations and Pipelines](./09_Operations_and_Pipelines.ipynb): Dynamically transforming your data as needed\n", " * **20 min**  [10 - Working with Large Datasets](./10_Working_with_Large_Datasets.ipynb): Using datasets too large to feed directly to your browser.\n", " * **30 min**  [11 - Streaming Data](./11_Streaming_Data.ipynb): Live plots of dynamically updated data sources.\n", " * **20 min**  [*Exercise 4*](./exercises/Exercise-4-dynamic-interactions.ipynb)\n", " * **10 min**  *Break*

\n", " \n", "- *Apps and dashboards* \n", " * **15 min**  [12 - Parameters and Widgets](./12_Parameters_and_Widgets.ipynb): Declarative custom controls\n", " * **30 min**  [13 - Deploying Bokeh Apps](./13_Deploying_Bokeh_Apps.ipynb): Deploying your visualizations using Bokeh server.\n", " * **20 min**  [A1 - Exploration with Containers](./A1_Exploration_with_Containers.ipynb): Containers that let you explore complex datasets.\n", " * **30 min**  [A2 - Dashboard Workflow](./A2_Dashboard_Workflow.ipynb): PyViz intro for people focusing on dashboards.\n", " * **15 min**  [*Exercise 5*](./exercises/Exercise-5-exporting-and-deploying-apps.ipynb)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Related links\n", "\n", "You will find extensive support material on the websites for each package. You may find these links particularly useful during the tutorial:\n", "\n", "* [HoloViews reference gallery](http://holoviews.org/reference/index.html): Visual reference of all elements and containers, along with some other components\n", "* [HoloViews getting-started guide](http://holoviews.org/getting_started/index.html): Covers some of the same topics as this tutorial, but without exercises" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 2 }