| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
2-D plotting library for Project Jupyter
bqplot is a 2-D visualization system for Jupyter, based on the constructs of the Grammar of Graphics.
In bqplot, every component of a plot is an interactive widget. This allows the user to integrate visualizations with other Jupyter interactive widgets to create integrated GUIs with a few simple lines of Python code.
Two APIs are provided
To try out bqplot interactively in your web browser, just click on the binder link:
This package depends on the following packages:
Using pip:
$ pip install bqplot
Using conda
$ conda install -c conda-forge bqplot
To enable bqplot with Jupyter lab:
$ jupyter labextension install bqplot
For a development installation (requires npm (version >= 3.8) and node (version >= 4.0)):
$ git clone https://github.com/bloomberg/bqplot.git $ cd bqplot $ pip install -e . $ jupyter nbextension install --py --symlink --sys-prefix bqplot $ jupyter nbextension enable --py --sys-prefix bqplot
Note for developers: the --symlink argument on Linux or OS X allows one to modify the JavaScript code in-place. This feature is not available with Windows.
For the experimental JupyterLab extension, install the Python package, make sure the Jupyter widgets extension is installed, and install the bqplot extension:
$ pip install bqplot $ jupyter labextension install @jupyter-widgets/jupyterlab-manager # install the Jupyter widgets extension $ jupyter labextension install bqplot
# In a Jupyter notebook
import bqplotThat's it! You're ready to go!
To get started with using bqplot, check out the full documentation
https://bqplot.readthedocs.io/
This software is licensed under the Apache 2.0 license. See the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |