Skip to main content

Jupyter notebook integration for vizzu

Project description

ipyvizzu

Jupyter notebook integration for vizzu.

ipyvizzu only works in jupiter notebook environment. A notebook cell may contain the following code snippet.

from ipyvizzu import Chart, Data, Config

data = Data()
data.add_serie("Foo", ["Alice", "Bob", "Ted"])
data.add_serie("Bar", [15, 32, 12])
data.add_serie("Baz", [5, 2, 2])

chart = Chart()
chart.set_data(data)

chart.animate(x="Foo", y="Bar", color="Foo")
chart.animate(geometry="circle")
chart.animate(x="Foo", y="Baz", color="Foo")
chart.animate(geometry="rectangle")

chart.show()

Installation

ipyvizzu requires only IPython package, but you can use it only in jupyter notebook therefore notebook project has to be installed.

pip install ipyvizzu
pip install notebook

Documentation

Documentation can be build with the doc make target.

make doc

Online version can be read at vizzuhq.github.io/ipyvizzu.

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

ipyvizzu-0.3.0.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

ipyvizzu-0.3.0-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page