A background data server for Altair charts.
Project description
Altair data server
This is a data transformer plugin for Altair that transparently serves data for Altair charts via a background WSGI server.
Note that charts will only render as long as your Python session is active.
The data server is a good option when you'll be generating multiple charts as part of an exploration of data.
Usage
First install the package and its dependencies:
$ pip install altair_data_server
Next import altair and enable the data server:
import altair as alt
alt.data_transformers.enable('data_server')
Now when you create an Altair chart, the data will be served in the background rather than embedded in the chart specification.
Once you are finished with exploration and want to generate charts that will have their data fully embedded in the notebook, you can restore the default data transformer:
alt.data_transformers.enable('default')
and carry on from there.
Remote Systems
Remote systems (JupyterHub instances like Binder) usually do not allow the end user to access arbitrary ports. To enable users to work on that setup, make sure jupyter-server-proxy is installed on the jupyter server. In your notebook, use the following transformer:
alt.data_transformers.enable('data_server_proxied')
Example
You can see this in action, as well as read some of the motivation for this plugin, in the example notebook: AltairDataServer.ipynb. Click the "Open in Colab" link above to run a live version of the notebook.
Known Issues
Because jupyter-server-proxy requires at least Python 3.5, the methods described in Remote Systems do not work.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for altair_data_server-0.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bff61d25bcfb20a142b02a7d8e523d28e9a47a698a4269fd7d9f59d35c5116ed |
|
MD5 | 570174a91ff04b0b76362f1fa9f5eb45 |
|
BLAKE2b-256 | 52e24fe126dbc775dbb8f15ff628a1290b6b188387219fe4edacf67ab32e68f7 |