1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
.. _ecosystem:
Resources
=========
We hope to make it easier to find learning resources and projects related to Altair by listing them here. If you know of a project that should be added, please let us know by opening an `Issue on GitHub <https://github.com/altair-viz/altair/issues>`_.
.. _learning-resources:
Learning Material
-----------------
This is a list of learning material that complements the official documentation and can help you learn more about how to use Altair.
`Visualization Curriculum`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~
A data visualization curriculum from the UW data group that developed Vega-Lite.
.. List of links.
.. _`Visualization Curriculum`: https://uwdata.github.io/visualization-curriculum
`Jupyter Notebook Tutorials`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jupyter Notebook tutorials and examples from the Altair authors.
.. List of links.
.. _`Jupyter Notebook Tutorials`: https://github.com/altair-viz/altair_notebooks
`Pycon Tutorial`_
~~~~~~~~~~~~~~~~~
Altair tutorial given at PyCon 2018 by the Altair author Jake VanderPlas.
.. List of links.
.. _`Pycon tutorial`: https://altair-viz.github.io/altair-tutorial
`Data Visualization Course`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This course covers how to create common statistical visualizations, tell stories with data, create geographical visualizations, and bring plots to life by adding interactive elements. Created at the University of British Columbia and can either be audited or taken as part of the `Key Capabilities for Data Science`_ certificate program.
.. List of links.
.. _`Data Visualization Course`: https://viz-learn.mds.ubc.ca
.. _`Key Capabilities for Data Science`: https://extendedlearning.ubc.ca/programs/key-capabilities-data-science
`Brief Introduction Videos`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Calmcode provides a few videos that give a brief overview of the Altair library.
.. List of links.
.. _`Brief Introduction Videos`: https://calmcode.io/altair/introduction.html
.. _altair-ecosystem:
Related Projects
----------------
This is a list of projects which are directly related to Altair. There are many other packages that can be used in tandem with Altair, e.g. `dashboard packages which you can read more about in the answers to this StackOverflow question`_.
.. List of links.
.. _`dashboard packages which you can read more about in the answers to this StackOverflow question`: https://stackoverflow.com/questions/49833866/making-dashboards-using-altair
Vega-Lite_
~~~~~~~~~~
The higher-level visualization grammar that Altair implements in Python.
.. List of links.
.. _Vega-Lite: https://vega.github.io/vega-lite
vl-convert_
~~~~~~~~~~~
Python library for converting Altair/Vega-Lite chart specifications into static images (SVG or PNG) or Vega chart specifications without any external dependencies.
.. List of links.
.. _vl-convert: https://github.com/vega/vl-convert
VegaFusion_
~~~~~~~~~~~
VegaFusion provides server-side scaling for Altair charts, which can accelerate interactive charts, extract transformed data, and perform data-intensive aggregations on the server and prune unused columns from the source dataset yielding smaller size visualizations.
.. List of links.
.. _VegaFusion: https://vegafusion.io/
altair_saver_
~~~~~~~~~~~~~
Enables saving charts to a variety of output types.
.. List of links.
.. _altair_saver: https://github.com/altair-viz/altair_saver
altair_data_server_
~~~~~~~~~~~~~~~~~~~
Data transformer plugin that transparently serves data for charts.
.. List of links.
.. _altair_data_server: https://github.com/altair-viz/altair_data_server
altair_pandas_
~~~~~~~~~~~~~~
Altair backend for the pandas plotting API.
.. List of links.
.. _altair_pandas: https://github.com/altair-viz/altair_pandas
vega_datasets_
~~~~~~~~~~~~~~
Offline access to the Vega datasets used in the Altair documentation.
.. List of links.
.. _vega_datasets: https://github.com/altair-viz/vega_datasets
altair_recipes_
~~~~~~~~~~~~~~~
altair_recipes provides a collection of ready-made statistical graphics for Altair. See the `docs <https://altair-recipes.readthedocs.io/en/latest/>`__.
.. List of links.
.. _altair_recipes: https://github.com/piccolbo/altair_recipes
nx_altair_
~~~~~~~~~~
nx_altair is a library for drawing NetworkX_ graphs using Altair. It offers a similar draw API as NetworkX but returns Altair Charts instead. This allows users to apply Altair's rich interactive API to networks graphs. See the `docs <https://github.com/Zsailer/nx_altair/blob/master/examples/nx_altair-tutorial.ipynb>`__.
.. List of links.
.. _nx_altair: https://github.com/Zsailer/nx_altair
.. _NetworkX: https://networkx.github.io/
`Altair Ally`_
~~~~~~~~~~~~~~
Altair Ally is a companion package to Altair, which provides a few shortcuts to create common plots for exploratory data analysis, particularly those involving visualization of an entire dataframe.
.. List of links.
.. _`Altair Ally`: https://joelostblom.github.io/altair_ally
gif_
~~~~
gif is the extension for Altair and matplotlib animations. The library provides a simple, high-level decorator interface to create frames in a regular for-loop that can be stitched together on save. See the `docs <https://github.com/maxhumber/gif>`__.
.. List of links.
.. _gif: https://github.com/maxhumber/gif
`Altair in R`_
~~~~~~~~~~~~~~
Altair in R provides an R interface to the Altair Python package. See the `docs <https://vegawidget.github.io/altair/>`__.
.. List of links.
.. _`Altair in R`: https://github.com/vegawidget/altair
|