plotly-resampler


Nameplotly-resampler JSON
Version 0.10.0 PyPI version JSON
download
home_pagehttps://github.com/predict-idlab/plotly-resampler
SummaryVisualizing large time series with plotly
upload_time2024-03-27 07:54:05
maintainerNone
docs_urlNone
authorJonas Van Der Donckt
requires_python<4.0.0,>=3.7.1
licenseMIT
keywords time-series visualization resampling plotly plotly-dash
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="#readme">
        <img alt="Plotly-Resampler logo" src="https://raw.githubusercontent.com/predict-idlab/plotly-resampler/main/mkdocs/static/logo.svg" width=65%>
    </a>
</p>

[![PyPI Latest Release](https://img.shields.io/pypi/v/plotly-resampler.svg)](https://pypi.org/project/plotly-resampler/)
[![support-version](https://img.shields.io/pypi/pyversions/plotly-resampler)](https://img.shields.io/pypi/pyversions/plotly-resampler)
[![codecov](https://img.shields.io/codecov/c/github/predict-idlab/plotly-resampler?logo=codecov)](https://codecov.io/gh/predict-idlab/plotly-resampler)
[![CodeQL](https://github.com/predict-idlab/plotly-resampler/actions/workflows/codeql.yml/badge.svg)](https://github.com/predict-idlab/plotly-resampler/actions/workflows/codeql.yml)
[![Downloads](https://static.pepy.tech/badge/plotly-resampler)](https://pepy.tech/project/plotly-resampler)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?)](http://makeapullrequest.com)
[![Testing](https://github.com/predict-idlab/plotly-resampler/actions/workflows/test.yml/badge.svg)](https://github.com/predict-idlab/plotly-resampler/actions/workflows/test.yml)
[![Documentation](https://img.shields.io/badge/read%20our%20docs!-informational)](https://predict-idlab.github.io/plotly-resampler/latest)

<!-- [![Downloads](https://pepy.tech/badge/plotly-resampler)](https://pepy.tech/project/plotly-resampler) -->

> `plotly_resampler`: visualize large sequential data by **adding resampling functionality to Plotly figures**

`plotly-resampler` improves the scalability of [Plotly](https://github.com/plotly/plotly.py) for visualizing large time series datasets. Specifically, our library _dynamically_ **aggregates time-series data respective to the current graph view**, ensuring efficient and responsive updates during user interactions like panning or zooming via callbacks.

This core aggregation functionality is achieved by utilizing by _time-series data point selection algorithms_, for which `plotly-resampler` leverages the highly optimized implementations available in [tsdownsample](https://github.com/predict-idlab/tsdownsample). Our default data aggregation method is `MinMaxLTTB` (and selects 1000 data points for plotting). For a deeper understanding of this method, you can consult to the algorithm's dedicated [MinMaxLTTB repository](https://github.com/predict-idlab/MinMaxLTTB) and the associated [research paper](https://arxiv.org/abs/2305.00332).

![basic example gif](https://raw.githubusercontent.com/predict-idlab/plotly-resampler/main/mkdocs/static/basic_example.gif)

In [this Plotly-Resampler demo](https://github.com/predict-idlab/plotly-resampler/blob/main/examples/basic_example.ipynb) over `110,000,000` data points are visualized!

<!-- These dynamic aggregation callbacks are realized with: -->
<!-- * [Dash](https://github.com/plotly/dash) when a `go.Figure` object is wrapped with dynamic aggregation functionality, see example ⬆️. -->
<!-- * The [FigureWidget.layout.on_change](https://plotly.com/python-api-reference/generated/plotly.html?highlight=on_change#plotly.basedatatypes.BasePlotlyType.on_change) method, when a `go.FigureWidget` is used within a `.ipynb` environment. -->

<!-- #### Useful links -->

<!-- - [Documentation]() work in progress 🚧  -->
<!-- - [Example notebooks](https://github.com/predict-idlab/plotly-resampler/tree/main/examples/) -->

### πŸ› οΈ Installation

| [**pip**](https://pypi.org/project/plotly_resampler/) | `pip install plotly-resampler` |
| ---| ----|
<!-- | [**conda**](https://anaconda.org/conda-forge/plotly_resampler/) | `conda install -c conda-forge plotly_resampler` | -->

<br>
<details><summary><b>πŸ‘€ What is the difference between plotly-resampler figures and plain plotly figures?</b></summary>

`plotly-resampler` can be thought of as wrapper around plain plotly figures which adds visualization scalability to line-charts by dynamically aggregating the data w.r.t. the front-end view. `plotly-resampler` thus adds dynamic aggregation functionality to plain plotly figures.

**❗ Important to know**:

* ``show`` *always* generates a static HTML view of the figure, prohibiting dynamic aggregation.
* To have dynamic aggregation:
  * Use `show_dash` with `FigureResampler` to initiate a **Dash** app to realize the dynamic aggregation with **callbacks**.<br>(or output the object in a cell via ``IPython.display``), which will also spawn a dash-web app
  * with ``FigureWidgetResampler``, you need to use ``IPython.display`` on the object, which uses widget-events to realize dynamic aggregation (via the running **IPython kernel**).

**Other changes of plotly-resampler figures w.r.t. vanilla plotly**:

* **double-clicking** within a line-chart area **does not Reset Axes**, as it results in an β€œAutoscale” event. We decided to implement an Autoscale event as updating your y-range such that it shows all the data that is in your x-range.
   * **Note**: vanilla Plotly figures their Autoscale result in Reset Axes behavior, in our opinion this did not make a lot of sense. It is therefore that we have overriden this behavior in plotly-resampler.
</details><br>

### πŸ“‹ Features

  * **Convenient** to use:
    * just add either
      * `register_plotly_resampler` function to your notebook with the best suited `mode` argument.
      * `FigureResampler` decorator around a plotly Figure and call `.show_dash()`
      * `FigureWidgetResampler` decorator around a plotly Figure and output the instance in a cell
    * allows all other plotly figure construction flexibility to be used!
  * **Environment-independent**
    * can be used in Jupyter, vscode-notebooks, Pycharm-notebooks, Google Colab, DataSpell, and even as application (on a server)
  * Interface for **various aggregation algorithms**:
    * ability to develop or select your preferred sequence aggregation method

## πŸš€ Usage

**Add dynamic aggregation** to your plotly Figure _(unfold your fitting use case)_
* πŸ€– <b>Automatically</b> _(minimal code overhead)_:
  <details><summary>Use the <code>register_plotly_resampler</code> function</summary>
    <br>

    1. Import and call the `register_plotly_resampler` method
    2. Just use your regular graph construction code

    * **code example**:
      ```python
      import plotly.graph_objects as go; import numpy as np
      from plotly_resampler import register_plotly_resampler

      # Call the register function once and all Figures/FigureWidgets will be wrapped
      # according to the register_plotly_resampler its `mode` argument
      register_plotly_resampler(mode='auto')

      x = np.arange(1_000_000)
      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000


      # auto mode: when working in an IPython environment, this will automatically be a 
      # FigureWidgetResampler else, this will be an FigureResampler
      f = go.Figure()
      f.add_trace({"y": noisy_sin + 2, "name": "yp2"})
      f
      ```

    > **Note**: This wraps **all** plotly graph object figures with a 
    > `FigureResampler` | `FigureWidgetResampler`. This can thus also be 
    > used for the `plotly.express` interface. πŸŽ‰

  </details>

* πŸ‘· <b>Manually</b> _(higher data aggregation configurability, more speedup possibilities)_:
  * Within a <b><i>jupyter</i></b> environment without creating a <i>web application</i>
    1. wrap the plotly Figure with `FigureWidgetResampler`
    2. output the `FigureWidgetResampler` instance in a cell
      ```python
      import plotly.graph_objects as go; import numpy as np
      from plotly_resampler import FigureResampler, FigureWidgetResampler

      x = np.arange(1_000_000)
      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000

      # OPTION 1 - FigureWidgetResampler: dynamic aggregation via `FigureWidget.layout.on_change`
      fig = FigureWidgetResampler(go.Figure())
      fig.add_trace(go.Scattergl(name='noisy sine', showlegend=True), hf_x=x, hf_y=noisy_sin)

      fig
      ```
  * Using a <b><i>web-application</i></b> with <b><a href="https://github.com/plotly/dash">dash</a></b> callbacks
    1. wrap the plotly Figure with `FigureResampler`
    2. call `.show_dash()` on the `Figure`
      ```python
      import plotly.graph_objects as go; import numpy as np
      from plotly_resampler import FigureResampler, FigureWidgetResampler

      x = np.arange(1_000_000)
      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000

      # OPTION 2 - FigureResampler: dynamic aggregation via a Dash web-app
      fig = FigureResampler(go.Figure())
      fig.add_trace(go.Scattergl(name='noisy sine', showlegend=True), hf_x=x, hf_y=noisy_sin)

      fig.show_dash(mode='inline')
      ```
  > **Tip** πŸ’‘:
   > For significant faster initial loading of the Figure, we advise to wrap the 
   > constructor of the plotly Figure and add the trace data as `hf_x` and `hf_y`

<br>

> **Note**:
> Any plotly Figure can be wrapped with `FigureResampler` and `FigureWidgetResampler`! πŸŽ‰
> But **only** the `go.Scatter`/`go.Scattergl` **traces are resampled**.

## πŸ’­ Important considerations & tips

* When running the code on a server, you should forward the port of the `FigureResampler.show_dash()` method to your local machine.<br>
  **Note** that you can add dynamic aggregation to plotly figures with the `FigureWidgetResampler` wrapper without needing to forward a port!
* The `FigureWidgetResampler` *uses the IPython main thread* for its data aggregation functionality, so when this main thread is occupied, no resampling logic can be executed. For example; if you perform long computations within your notebook, the kernel will be occupied during these computations, and will only execute the resampling operations that take place during these computations after finishing that computation.
* In general, when using downsampling one should be aware of (possible) [aliasing](https://en.wikipedia.org/wiki/Aliasing) effects.
  The <b style="color:orange">[R]</b> in the legend indicates when the corresponding trace is being resampled (and thus possibly distorted) or not. Additionally, the `~<range>` suffix represent the mean aggregation bin size in terms of the sequence index.
* The plotly **autoscale** event (triggered by the autoscale button or a double-click within the graph), **does not reset the axes but autoscales the current graph-view** of plotly-resampler figures. This design choice was made as it seemed more intuitive for the developers to support this behavior with double-click than the default axes-reset behavior. The graph axes can ofcourse be resetted by using the `reset_axis` button.  If you want to give feedback and discuss this further with the developers, see issue [#49](https://github.com/predict-idlab/plotly-resampler/issues/49).

## πŸ“œ Citation and papers

The paper about the plotly-resampler toolkit itself (preprint): https://arxiv.org/abs/2206.08703

```bibtex
@inproceedings{van2022plotly,
  title={Plotly-resampler: Effective visual analytics for large time series},
  author={Van Der Donckt, Jonas and Van Der Donckt, Jeroen and Deprost, Emiel and Van Hoecke, Sofie},
  booktitle={2022 IEEE Visualization and Visual Analytics (VIS)},
  pages={21--25},
  year={2022},
  organization={IEEE}
}
```

**Related papers**:
- **Visual representativeness** of time series data point selection algorithms (preprint): https://arxiv.org/abs/2304.00900 <br>
  code: https://github.com/predict-idlab/ts-datapoint-selection-vis
-  **MinMaxLTTB** - an efficient data point selection algorithm (preprint): https://arxiv.org/abs/2305.00332 <br>
  code: https://github.com/predict-idlab/MinMaxLTTB


<br>

---

<p align="center">
πŸ‘€ <i>Jonas Van Der Donckt, Jeroen Van Der Donckt, Emiel Deprost</i>
</p>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/predict-idlab/plotly-resampler",
    "name": "plotly-resampler",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0.0,>=3.7.1",
    "maintainer_email": null,
    "keywords": "time-series, visualization, resampling, plotly, plotly-dash",
    "author": "Jonas Van Der Donckt",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/f1/03/02d7d2ac465466c419b99a56577572bc4db3005bb9ce384b8b2d4109654b/plotly_resampler-0.10.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"#readme\">\n        <img alt=\"Plotly-Resampler logo\" src=\"https://raw.githubusercontent.com/predict-idlab/plotly-resampler/main/mkdocs/static/logo.svg\" width=65%>\n    </a>\n</p>\n\n[![PyPI Latest Release](https://img.shields.io/pypi/v/plotly-resampler.svg)](https://pypi.org/project/plotly-resampler/)\n[![support-version](https://img.shields.io/pypi/pyversions/plotly-resampler)](https://img.shields.io/pypi/pyversions/plotly-resampler)\n[![codecov](https://img.shields.io/codecov/c/github/predict-idlab/plotly-resampler?logo=codecov)](https://codecov.io/gh/predict-idlab/plotly-resampler)\n[![CodeQL](https://github.com/predict-idlab/plotly-resampler/actions/workflows/codeql.yml/badge.svg)](https://github.com/predict-idlab/plotly-resampler/actions/workflows/codeql.yml)\n[![Downloads](https://static.pepy.tech/badge/plotly-resampler)](https://pepy.tech/project/plotly-resampler)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?)](http://makeapullrequest.com)\n[![Testing](https://github.com/predict-idlab/plotly-resampler/actions/workflows/test.yml/badge.svg)](https://github.com/predict-idlab/plotly-resampler/actions/workflows/test.yml)\n[![Documentation](https://img.shields.io/badge/read%20our%20docs!-informational)](https://predict-idlab.github.io/plotly-resampler/latest)\n\n<!-- [![Downloads](https://pepy.tech/badge/plotly-resampler)](https://pepy.tech/project/plotly-resampler) -->\n\n> `plotly_resampler`: visualize large sequential data by **adding resampling functionality to Plotly figures**\n\n`plotly-resampler` improves the scalability of [Plotly](https://github.com/plotly/plotly.py) for visualizing large time series datasets. Specifically, our library _dynamically_ **aggregates time-series data respective to the current graph view**, ensuring efficient and responsive updates during user interactions like panning or zooming via callbacks.\n\nThis core aggregation functionality is achieved by utilizing by _time-series data point selection algorithms_, for which `plotly-resampler` leverages the highly optimized implementations available in [tsdownsample](https://github.com/predict-idlab/tsdownsample). Our default data aggregation method is `MinMaxLTTB` (and selects 1000 data points for plotting). For a deeper understanding of this method, you can consult to the algorithm's dedicated [MinMaxLTTB repository](https://github.com/predict-idlab/MinMaxLTTB) and the associated [research paper](https://arxiv.org/abs/2305.00332).\n\n![basic example gif](https://raw.githubusercontent.com/predict-idlab/plotly-resampler/main/mkdocs/static/basic_example.gif)\n\nIn [this Plotly-Resampler demo](https://github.com/predict-idlab/plotly-resampler/blob/main/examples/basic_example.ipynb) over `110,000,000` data points are visualized!\n\n<!-- These dynamic aggregation callbacks are realized with: -->\n<!-- * [Dash](https://github.com/plotly/dash) when a `go.Figure` object is wrapped with dynamic aggregation functionality, see example \u2b06\ufe0f. -->\n<!-- * The [FigureWidget.layout.on_change](https://plotly.com/python-api-reference/generated/plotly.html?highlight=on_change#plotly.basedatatypes.BasePlotlyType.on_change) method, when a `go.FigureWidget` is used within a `.ipynb` environment. -->\n\n<!-- #### Useful links -->\n\n<!-- - [Documentation]() work in progress \ud83d\udea7  -->\n<!-- - [Example notebooks](https://github.com/predict-idlab/plotly-resampler/tree/main/examples/) -->\n\n### \ud83d\udee0\ufe0f Installation\n\n| [**pip**](https://pypi.org/project/plotly_resampler/) | `pip install plotly-resampler` |\n| ---| ----|\n<!-- | [**conda**](https://anaconda.org/conda-forge/plotly_resampler/) | `conda install -c conda-forge plotly_resampler` | -->\n\n<br>\n<details><summary><b>\ud83d\udc40 What is the difference between plotly-resampler figures and plain plotly figures?</b></summary>\n\n`plotly-resampler` can be thought of as wrapper around plain plotly figures which adds visualization scalability to line-charts by dynamically aggregating the data w.r.t. the front-end view. `plotly-resampler` thus adds dynamic aggregation functionality to plain plotly figures.\n\n**\u2757 Important to know**:\n\n* ``show`` *always* generates a static HTML view of the figure, prohibiting dynamic aggregation.\n* To have dynamic aggregation:\n  * Use `show_dash` with `FigureResampler` to initiate a **Dash** app to realize the dynamic aggregation with **callbacks**.<br>(or output the object in a cell via ``IPython.display``), which will also spawn a dash-web app\n  * with ``FigureWidgetResampler``, you need to use ``IPython.display`` on the object, which uses widget-events to realize dynamic aggregation (via the running **IPython kernel**).\n\n**Other changes of plotly-resampler figures w.r.t. vanilla plotly**:\n\n* **double-clicking** within a line-chart area **does not Reset Axes**, as it results in an \u201cAutoscale\u201d event. We decided to implement an Autoscale event as updating your y-range such that it shows all the data that is in your x-range.\n   * **Note**: vanilla Plotly figures their Autoscale result in Reset Axes behavior, in our opinion this did not make a lot of sense. It is therefore that we have overriden this behavior in plotly-resampler.\n</details><br>\n\n### \ud83d\udccb Features\n\n  * **Convenient** to use:\n    * just add either\n      * `register_plotly_resampler` function to your notebook with the best suited `mode` argument.\n      * `FigureResampler` decorator around a plotly Figure and call `.show_dash()`\n      * `FigureWidgetResampler` decorator around a plotly Figure and output the instance in a cell\n    * allows all other plotly figure construction flexibility to be used!\n  * **Environment-independent**\n    * can be used in Jupyter, vscode-notebooks, Pycharm-notebooks, Google Colab, DataSpell, and even as application (on a server)\n  * Interface for **various aggregation algorithms**:\n    * ability to develop or select your preferred sequence aggregation method\n\n## \ud83d\ude80 Usage\n\n**Add dynamic aggregation** to your plotly Figure _(unfold your fitting use case)_\n* \ud83e\udd16 <b>Automatically</b> _(minimal code overhead)_:\n  <details><summary>Use the <code>register_plotly_resampler</code> function</summary>\n    <br>\n\n    1. Import and call the `register_plotly_resampler` method\n    2. Just use your regular graph construction code\n\n    * **code example**:\n      ```python\n      import plotly.graph_objects as go; import numpy as np\n      from plotly_resampler import register_plotly_resampler\n\n      # Call the register function once and all Figures/FigureWidgets will be wrapped\n      # according to the register_plotly_resampler its `mode` argument\n      register_plotly_resampler(mode='auto')\n\n      x = np.arange(1_000_000)\n      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000\n\n\n      # auto mode: when working in an IPython environment, this will automatically be a \n      # FigureWidgetResampler else, this will be an FigureResampler\n      f = go.Figure()\n      f.add_trace({\"y\": noisy_sin + 2, \"name\": \"yp2\"})\n      f\n      ```\n\n    > **Note**: This wraps **all** plotly graph object figures with a \n    > `FigureResampler` | `FigureWidgetResampler`. This can thus also be \n    > used for the `plotly.express` interface. \ud83c\udf89\n\n  </details>\n\n* \ud83d\udc77 <b>Manually</b> _(higher data aggregation configurability, more speedup possibilities)_:\n  * Within a <b><i>jupyter</i></b> environment without creating a <i>web application</i>\n    1. wrap the plotly Figure with `FigureWidgetResampler`\n    2. output the `FigureWidgetResampler` instance in a cell\n      ```python\n      import plotly.graph_objects as go; import numpy as np\n      from plotly_resampler import FigureResampler, FigureWidgetResampler\n\n      x = np.arange(1_000_000)\n      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000\n\n      # OPTION 1 - FigureWidgetResampler: dynamic aggregation via `FigureWidget.layout.on_change`\n      fig = FigureWidgetResampler(go.Figure())\n      fig.add_trace(go.Scattergl(name='noisy sine', showlegend=True), hf_x=x, hf_y=noisy_sin)\n\n      fig\n      ```\n  * Using a <b><i>web-application</i></b> with <b><a href=\"https://github.com/plotly/dash\">dash</a></b> callbacks\n    1. wrap the plotly Figure with `FigureResampler`\n    2. call `.show_dash()` on the `Figure`\n      ```python\n      import plotly.graph_objects as go; import numpy as np\n      from plotly_resampler import FigureResampler, FigureWidgetResampler\n\n      x = np.arange(1_000_000)\n      noisy_sin = (3 + np.sin(x / 200) + np.random.randn(len(x)) / 10) * x / 1_000\n\n      # OPTION 2 - FigureResampler: dynamic aggregation via a Dash web-app\n      fig = FigureResampler(go.Figure())\n      fig.add_trace(go.Scattergl(name='noisy sine', showlegend=True), hf_x=x, hf_y=noisy_sin)\n\n      fig.show_dash(mode='inline')\n      ```\n  > **Tip** \ud83d\udca1:\n   > For significant faster initial loading of the Figure, we advise to wrap the \n   > constructor of the plotly Figure and add the trace data as `hf_x` and `hf_y`\n\n<br>\n\n> **Note**:\n> Any plotly Figure can be wrapped with `FigureResampler` and `FigureWidgetResampler`! \ud83c\udf89\n> But **only** the `go.Scatter`/`go.Scattergl` **traces are resampled**.\n\n## \ud83d\udcad Important considerations & tips\n\n* When running the code on a server, you should forward the port of the `FigureResampler.show_dash()` method to your local machine.<br>\n  **Note** that you can add dynamic aggregation to plotly figures with the `FigureWidgetResampler` wrapper without needing to forward a port!\n* The `FigureWidgetResampler` *uses the IPython main thread* for its data aggregation functionality, so when this main thread is occupied, no resampling logic can be executed. For example; if you perform long computations within your notebook, the kernel will be occupied during these computations, and will only execute the resampling operations that take place during these computations after finishing that computation.\n* In general, when using downsampling one should be aware of (possible) [aliasing](https://en.wikipedia.org/wiki/Aliasing) effects.\n  The <b style=\"color:orange\">[R]</b> in the legend indicates when the corresponding trace is being resampled (and thus possibly distorted) or not. Additionally, the `~<range>` suffix represent the mean aggregation bin size in terms of the sequence index.\n* The plotly **autoscale** event (triggered by the autoscale button or a double-click within the graph), **does not reset the axes but autoscales the current graph-view** of plotly-resampler figures. This design choice was made as it seemed more intuitive for the developers to support this behavior with double-click than the default axes-reset behavior. The graph axes can ofcourse be resetted by using the `reset_axis` button.  If you want to give feedback and discuss this further with the developers, see issue [#49](https://github.com/predict-idlab/plotly-resampler/issues/49).\n\n## \ud83d\udcdc Citation and papers\n\nThe paper about the plotly-resampler toolkit itself (preprint): https://arxiv.org/abs/2206.08703\n\n```bibtex\n@inproceedings{van2022plotly,\n  title={Plotly-resampler: Effective visual analytics for large time series},\n  author={Van Der Donckt, Jonas and Van Der Donckt, Jeroen and Deprost, Emiel and Van Hoecke, Sofie},\n  booktitle={2022 IEEE Visualization and Visual Analytics (VIS)},\n  pages={21--25},\n  year={2022},\n  organization={IEEE}\n}\n```\n\n**Related papers**:\n- **Visual representativeness** of time series data point selection algorithms (preprint): https://arxiv.org/abs/2304.00900 <br>\n  code: https://github.com/predict-idlab/ts-datapoint-selection-vis\n-  **MinMaxLTTB** - an efficient data point selection algorithm (preprint): https://arxiv.org/abs/2305.00332 <br>\n  code: https://github.com/predict-idlab/MinMaxLTTB\n\n\n<br>\n\n---\n\n<p align=\"center\">\n\ud83d\udc64 <i>Jonas Van Der Donckt, Jeroen Van Der Donckt, Emiel Deprost</i>\n</p>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Visualizing large time series with plotly",
    "version": "0.10.0",
    "project_urls": {
        "Documentation": "https://predict-idlab.github.io/plotly-resampler/latest",
        "Homepage": "https://github.com/predict-idlab/plotly-resampler",
        "Repository": "https://github.com/predict-idlab/plotly-resampler"
    },
    "split_keywords": [
        "time-series",
        " visualization",
        " resampling",
        " plotly",
        " plotly-dash"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b54a45150bb460637d05653940bcb8f9a14b6ba2fb4c0a454485a2fa8088b88e",
                "md5": "90605f3d2c5706897b0bf2f205b7f410",
                "sha256": "4d695557fe8a718b4a3f45a5381fae6faca0e441d04b6d83d6b43ce998013355"
            },
            "downloads": -1,
            "filename": "plotly_resampler-0.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "90605f3d2c5706897b0bf2f205b7f410",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0.0,>=3.7.1",
            "size": 80711,
            "upload_time": "2024-03-27T07:54:02",
            "upload_time_iso_8601": "2024-03-27T07:54:02.135107Z",
            "url": "https://files.pythonhosted.org/packages/b5/4a/45150bb460637d05653940bcb8f9a14b6ba2fb4c0a454485a2fa8088b88e/plotly_resampler-0.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f10302d7d2ac465466c419b99a56577572bc4db3005bb9ce384b8b2d4109654b",
                "md5": "b5c1e8a6cc93c16be0d4aee02b7674f6",
                "sha256": "e1063d6d00aa4aedeb8c2c204de8661751b2145fd06682cd8fead9983c9a8334"
            },
            "downloads": -1,
            "filename": "plotly_resampler-0.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b5c1e8a6cc93c16be0d4aee02b7674f6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.7.1",
            "size": 55489,
            "upload_time": "2024-03-27T07:54:05",
            "upload_time_iso_8601": "2024-03-27T07:54:05.390787Z",
            "url": "https://files.pythonhosted.org/packages/f1/03/02d7d2ac465466c419b99a56577572bc4db3005bb9ce384b8b2d4109654b/plotly_resampler-0.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 07:54:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "predict-idlab",
    "github_project": "plotly-resampler",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "plotly-resampler"
}
        
Elapsed time: 0.24317s