ipyvizzu


Nameipyvizzu JSON
Version 0.17.0 PyPI version JSON
download
home_page
SummaryBuild animated charts in Jupyter Notebook and similar environments with a simple Python syntax.
upload_time2023-12-21 10:25:46
maintainer
docs_urlNone
author
requires_python>=3.6
licenseApache-2.0
keywords python chart charts dataviz jupyter animation ipython graphs storytelling jupyter-notebook data-visualization graphing plotting charting vizzu
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://ipyvizzu.vizzuhq.com/0.17/">
    <img src="https://lib.vizzuhq.com/0.9/readme/infinite-60.gif" alt="Vizzu" />
  </a>
  <p align="center"><b>ipyvizzu</b> - Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax</p>
  <p align="center">
    <a href="https://ipyvizzu.vizzuhq.com/0.17/">Documentation</a>
    · <a href="https://ipyvizzu.vizzuhq.com/0.17/examples/">Examples</a>
    · <a href="https://ipyvizzu.vizzuhq.com/0.17/reference/ipyvizzu/">Code reference</a>
    · <a href="https://github.com/vizzuhq/ipyvizzu">Repository</a>
    · <a href="https://blog.vizzuhq.com">Blog</a>
  </p>
</p>

[![PyPI version](https://badge.fury.io/py/ipyvizzu.svg)](https://badge.fury.io/py/ipyvizzu)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ipyvizzu.svg)](https://anaconda.org/conda-forge/ipyvizzu)
[![CI-CD](https://github.com/vizzuhq/ipyvizzu/actions/workflows/cicd.yml/badge.svg?branch=main)](https://github.com/vizzuhq/ipyvizzu/actions/workflows/cicd.yml)

# ipyvizzu

## About The Project

`ipyvizzu` is an animated charting tool for [Jupyter](https://jupyter.org),
[Google Colab](https://colab.research.google.com),
[Databricks](https://docs.databricks.com/notebooks),
[Kaggle](https://www.kaggle.com/code) and [Deepnote](https://deepnote.com)
notebooks among other platforms. `ipyvizzu` enables data scientists and analysts
to utilize animation for storytelling with data using `Python`. It's built on
the open-source `JavaScript`/`C++` charting library
[Vizzu](https://github.com/vizzuhq/vizzu-lib).

**There is a new extension of `ipyvizzu`,
[ipyvizzu-story](https://vizzuhq.github.io/ipyvizzu-story/)** with which the
animated charts can be presented right from the notebooks. Since
`ipyvizzu-story`'s syntax is a bit different to `ipyvizzu`'s, we suggest you to
start from the [ipyvizzu-story repo](https://github.com/vizzuhq/ipyvizzu-story)
if you're interested in using animated charts to present your findings live or
to share your presentation as an HTML file.

Similarly to `Vizzu`, `ipyvizzu` utilizes a generic dataviz engine that
generates many types of charts and seamlessly animates between them. It is
designed for building animated data stories as it enables showing different
perspectives of the data that the viewers can easily follow.

Main features:

- Designed with animation in focus;
- Defaults based on data visualization guidelines;
- Works with `Pandas` dataframe, while also `JSON` and inline data input is
  available;
- Auto scrolling feature to keep the actual chart in position while executing
  multiple cells.

## Installation

```sh
pip install ipyvizzu
```

Visit [Installation chapter](https://ipyvizzu.vizzuhq.com/0.17/installation/)
for more options and details.

## Usage

You can create the animation below with the following code snippet.

<p align="center">
  <img src="https://ipyvizzu.vizzuhq.com/0.17/assets/ipyvizzu-promo.gif" alt="ipyvizzu" />
</p>

```python
import pandas as pd
from ipyvizzu import Chart, Data, Config

df = pd.read_csv(
    "https://ipyvizzu.vizzuhq.com/0.17/showcases/titanic/titanic.csv"
)
data = Data()
data.add_df(df)

chart = Chart(width="640px", height="360px")

chart.animate(data)

chart.animate(
    Config(
        {
            "x": "Count",
            "y": "Sex",
            "label": "Count",
            "title": "Passengers of the Titanic",
        }
    )
)
chart.animate(
    Config(
        {
            "x": ["Count", "Survived"],
            "label": ["Count", "Survived"],
            "color": "Survived",
        }
    )
)
chart.animate(Config({"x": "Count", "y": ["Sex", "Survived"]}))
```

## Documentation

Visit our [Documentation site](https://ipyvizzu.vizzuhq.com/0.17/) for more
details and a step-by-step tutorial into `ipyvizzu` or check out our
[Example gallery](https://ipyvizzu.vizzuhq.com/0.17/examples/).

## Environments

`ipyvizzu` can be used in a wide variety of environments, visit
[Environments chapter](https://ipyvizzu.vizzuhq.com/0.17/environments/) for
more details.

- Notebooks
  - [Jupyter Notebook](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyternotebook/)
  - [Colab](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/colab/)
  - [Databricks](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/databricks/)
  - [DataCamp](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/datacamp/)
  - [Deepnote](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/deepnote/)
  - [JupyterLab](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyterlab/)
  - [JupyterLite](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyterlite/)
  - [Kaggle](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/kaggle/)
  - [Noteable](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/noteable/)
- App platforms
  - [Streamlit](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/streamlit/)
  - [Flask](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/flask/)
  - [Panel](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/panel/)
  - [Mercury](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/mercury/)
  - [Voilà](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/voila/)
- BI tools
  - [Mode](https://ipyvizzu.vizzuhq.com/0.17/environments/bi/mode/)
- IDEs
  - [PyCharm](https://ipyvizzu.vizzuhq.com/0.17/environments/ide/pycharm/)
  - [VSCode Python](https://ipyvizzu.vizzuhq.com/0.17/environments/ide/vscode/)

## Extensions

- [ipyvizzu-story](https://ipyvizzu-story.vizzuhq.com/) adds presentation
  controls to present data stories live or to share them as an interactive HTML
  file.

## Contributing

We welcome contributions to the project, visit our contributing
[guide](https://ipyvizzu.vizzuhq.com/0.17/CONTRIBUTING/) for further info.

## Contact

- Join our Slack if you have any questions or comments:
  [vizzu-community.slack.com](https://join.slack.com/t/vizzu-community/shared_invite/zt-w2nqhq44-2CCWL4o7qn2Ns1EFSf9kEg)
- Drop us a line at hello@vizzuhq.com
- Follow us on Twitter: [VizzuHQ](https://twitter.com/VizzuHQ)

## Usage Statistics

`ipyvizzu` collects aggregate usage statistics by default to follow the progress
and overall trends of our library. This feature is optional, and users can
choose to opt-out. However, we do not track, collect, or store any personal data
or personally identifiable information. Please note that even when this feature
is enabled, publishing anything made with `ipyvizzu` remains GDPR compatible.
For more details, please visit
[Analytics chapter](https://ipyvizzu.vizzuhq.com/0.17/tutorial/chart_settings/#analytics).

## License

Copyright © 2022-2023 [Vizzu Inc.](https://vizzuhq.com)

Released under the
[Apache 2.0 License](https://ipyvizzu.vizzuhq.com/0.17/LICENSE/).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ipyvizzu",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "python chart charts dataviz jupyter animation ipython graphs storytelling jupyter-notebook data-visualization graphing plotting charting vizzu",
    "author": "",
    "author_email": "Vizzu Inc. <hello@vizzuhq.com>",
    "download_url": "https://files.pythonhosted.org/packages/10/a0/333d480a2cdaa02af0dfff46a32febc59b66d6a07509e11c710f7365b61e/ipyvizzu-0.17.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://ipyvizzu.vizzuhq.com/0.17/\">\n    <img src=\"https://lib.vizzuhq.com/0.9/readme/infinite-60.gif\" alt=\"Vizzu\" />\n  </a>\n  <p align=\"center\"><b>ipyvizzu</b> - Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax</p>\n  <p align=\"center\">\n    <a href=\"https://ipyvizzu.vizzuhq.com/0.17/\">Documentation</a>\n    \u00b7 <a href=\"https://ipyvizzu.vizzuhq.com/0.17/examples/\">Examples</a>\n    \u00b7 <a href=\"https://ipyvizzu.vizzuhq.com/0.17/reference/ipyvizzu/\">Code reference</a>\n    \u00b7 <a href=\"https://github.com/vizzuhq/ipyvizzu\">Repository</a>\n    \u00b7 <a href=\"https://blog.vizzuhq.com\">Blog</a>\n  </p>\n</p>\n\n[![PyPI version](https://badge.fury.io/py/ipyvizzu.svg)](https://badge.fury.io/py/ipyvizzu)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ipyvizzu.svg)](https://anaconda.org/conda-forge/ipyvizzu)\n[![CI-CD](https://github.com/vizzuhq/ipyvizzu/actions/workflows/cicd.yml/badge.svg?branch=main)](https://github.com/vizzuhq/ipyvizzu/actions/workflows/cicd.yml)\n\n# ipyvizzu\n\n## About The Project\n\n`ipyvizzu` is an animated charting tool for [Jupyter](https://jupyter.org),\n[Google Colab](https://colab.research.google.com),\n[Databricks](https://docs.databricks.com/notebooks),\n[Kaggle](https://www.kaggle.com/code) and [Deepnote](https://deepnote.com)\nnotebooks among other platforms. `ipyvizzu` enables data scientists and analysts\nto utilize animation for storytelling with data using `Python`. It's built on\nthe open-source `JavaScript`/`C++` charting library\n[Vizzu](https://github.com/vizzuhq/vizzu-lib).\n\n**There is a new extension of `ipyvizzu`,\n[ipyvizzu-story](https://vizzuhq.github.io/ipyvizzu-story/)** with which the\nanimated charts can be presented right from the notebooks. Since\n`ipyvizzu-story`'s syntax is a bit different to `ipyvizzu`'s, we suggest you to\nstart from the [ipyvizzu-story repo](https://github.com/vizzuhq/ipyvizzu-story)\nif you're interested in using animated charts to present your findings live or\nto share your presentation as an HTML file.\n\nSimilarly to `Vizzu`, `ipyvizzu` utilizes a generic dataviz engine that\ngenerates many types of charts and seamlessly animates between them. It is\ndesigned for building animated data stories as it enables showing different\nperspectives of the data that the viewers can easily follow.\n\nMain features:\n\n- Designed with animation in focus;\n- Defaults based on data visualization guidelines;\n- Works with `Pandas` dataframe, while also `JSON` and inline data input is\n  available;\n- Auto scrolling feature to keep the actual chart in position while executing\n  multiple cells.\n\n## Installation\n\n```sh\npip install ipyvizzu\n```\n\nVisit [Installation chapter](https://ipyvizzu.vizzuhq.com/0.17/installation/)\nfor more options and details.\n\n## Usage\n\nYou can create the animation below with the following code snippet.\n\n<p align=\"center\">\n  <img src=\"https://ipyvizzu.vizzuhq.com/0.17/assets/ipyvizzu-promo.gif\" alt=\"ipyvizzu\" />\n</p>\n\n```python\nimport pandas as pd\nfrom ipyvizzu import Chart, Data, Config\n\ndf = pd.read_csv(\n    \"https://ipyvizzu.vizzuhq.com/0.17/showcases/titanic/titanic.csv\"\n)\ndata = Data()\ndata.add_df(df)\n\nchart = Chart(width=\"640px\", height=\"360px\")\n\nchart.animate(data)\n\nchart.animate(\n    Config(\n        {\n            \"x\": \"Count\",\n            \"y\": \"Sex\",\n            \"label\": \"Count\",\n            \"title\": \"Passengers of the Titanic\",\n        }\n    )\n)\nchart.animate(\n    Config(\n        {\n            \"x\": [\"Count\", \"Survived\"],\n            \"label\": [\"Count\", \"Survived\"],\n            \"color\": \"Survived\",\n        }\n    )\n)\nchart.animate(Config({\"x\": \"Count\", \"y\": [\"Sex\", \"Survived\"]}))\n```\n\n## Documentation\n\nVisit our [Documentation site](https://ipyvizzu.vizzuhq.com/0.17/) for more\ndetails and a step-by-step tutorial into `ipyvizzu` or check out our\n[Example gallery](https://ipyvizzu.vizzuhq.com/0.17/examples/).\n\n## Environments\n\n`ipyvizzu` can be used in a wide variety of environments, visit\n[Environments chapter](https://ipyvizzu.vizzuhq.com/0.17/environments/) for\nmore details.\n\n- Notebooks\n  - [Jupyter Notebook](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyternotebook/)\n  - [Colab](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/colab/)\n  - [Databricks](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/databricks/)\n  - [DataCamp](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/datacamp/)\n  - [Deepnote](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/deepnote/)\n  - [JupyterLab](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyterlab/)\n  - [JupyterLite](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/jupyterlite/)\n  - [Kaggle](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/kaggle/)\n  - [Noteable](https://ipyvizzu.vizzuhq.com/0.17/environments/notebook/noteable/)\n- App platforms\n  - [Streamlit](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/streamlit/)\n  - [Flask](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/flask/)\n  - [Panel](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/panel/)\n  - [Mercury](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/mercury/)\n  - [Voil\u00e0](https://ipyvizzu.vizzuhq.com/0.17/environments/platform/voila/)\n- BI tools\n  - [Mode](https://ipyvizzu.vizzuhq.com/0.17/environments/bi/mode/)\n- IDEs\n  - [PyCharm](https://ipyvizzu.vizzuhq.com/0.17/environments/ide/pycharm/)\n  - [VSCode Python](https://ipyvizzu.vizzuhq.com/0.17/environments/ide/vscode/)\n\n## Extensions\n\n- [ipyvizzu-story](https://ipyvizzu-story.vizzuhq.com/) adds presentation\n  controls to present data stories live or to share them as an interactive HTML\n  file.\n\n## Contributing\n\nWe welcome contributions to the project, visit our contributing\n[guide](https://ipyvizzu.vizzuhq.com/0.17/CONTRIBUTING/) for further info.\n\n## Contact\n\n- Join our Slack if you have any questions or comments:\n  [vizzu-community.slack.com](https://join.slack.com/t/vizzu-community/shared_invite/zt-w2nqhq44-2CCWL4o7qn2Ns1EFSf9kEg)\n- Drop us a line at hello@vizzuhq.com\n- Follow us on Twitter: [VizzuHQ](https://twitter.com/VizzuHQ)\n\n## Usage Statistics\n\n`ipyvizzu` collects aggregate usage statistics by default to follow the progress\nand overall trends of our library. This feature is optional, and users can\nchoose to opt-out. However, we do not track, collect, or store any personal data\nor personally identifiable information. Please note that even when this feature\nis enabled, publishing anything made with `ipyvizzu` remains GDPR compatible.\nFor more details, please visit\n[Analytics chapter](https://ipyvizzu.vizzuhq.com/0.17/tutorial/chart_settings/#analytics).\n\n## License\n\nCopyright \u00a9 2022-2023 [Vizzu Inc.](https://vizzuhq.com)\n\nReleased under the\n[Apache 2.0 License](https://ipyvizzu.vizzuhq.com/0.17/LICENSE/).\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.",
    "version": "0.17.0",
    "project_urls": {
        "Documentation": "https://ipyvizzu.vizzuhq.com",
        "Homepage": "https://ipyvizzu.vizzuhq.com",
        "Source": "https://github.com/vizzuhq/ipyvizzu",
        "Tracker": "https://github.com/vizzuhq/ipyvizzu/issues"
    },
    "split_keywords": [
        "python",
        "chart",
        "charts",
        "dataviz",
        "jupyter",
        "animation",
        "ipython",
        "graphs",
        "storytelling",
        "jupyter-notebook",
        "data-visualization",
        "graphing",
        "plotting",
        "charting",
        "vizzu"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51f0de24a49d39e39b24c9d80f6a410b3018c7fe54ac00adcf1ad50c2389e2ee",
                "md5": "b66672f68cedf49f9f3ad7f3fe5f3ad8",
                "sha256": "f7369a2a294a25b548ab154b748bc70b4850a3d3a5d3c3357068641f353ef7c5"
            },
            "downloads": -1,
            "filename": "ipyvizzu-0.17.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b66672f68cedf49f9f3ad7f3fe5f3ad8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 40064,
            "upload_time": "2023-12-21T10:25:43",
            "upload_time_iso_8601": "2023-12-21T10:25:43.791892Z",
            "url": "https://files.pythonhosted.org/packages/51/f0/de24a49d39e39b24c9d80f6a410b3018c7fe54ac00adcf1ad50c2389e2ee/ipyvizzu-0.17.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10a0333d480a2cdaa02af0dfff46a32febc59b66d6a07509e11c710f7365b61e",
                "md5": "55e2c667811c98397ea9608dccc36228",
                "sha256": "f31bde4525cb7ab2a4a4fef105a22723913f76c7e326aff53c6c834af421a00f"
            },
            "downloads": -1,
            "filename": "ipyvizzu-0.17.0.tar.gz",
            "has_sig": false,
            "md5_digest": "55e2c667811c98397ea9608dccc36228",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 44727,
            "upload_time": "2023-12-21T10:25:46",
            "upload_time_iso_8601": "2023-12-21T10:25:46.647468Z",
            "url": "https://files.pythonhosted.org/packages/10/a0/333d480a2cdaa02af0dfff46a32febc59b66d6a07509e11c710f7365b61e/ipyvizzu-0.17.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-21 10:25:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vizzuhq",
    "github_project": "ipyvizzu",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ipyvizzu"
}
        
Elapsed time: 0.15857s