plotly-resampler
plotly-resampler copied to clipboard
Visualize large time series data with plotly.py
Here is my code: I am trying to show only the selected range values using the custom slider. ```import numpy as np import pandas as pd import plotly.express as px...
I have several figures in a notebook. All other figures plot correctly and I can wrap PlotlyResampler around and show them. However, one particular figure plots just fine, but when...
This PR does the following; * Parse `hf_x` to numeric or datetime if `hf_x` is an array of dtype object. * should fix #115 -> object arrays were not handled...
https://github.com/predict-idlab/plotly-resampler/blob/5df40fd0575db62bd06d20c129d8643d75dba558/plotly_resampler/figure_resampler/figure_resampler_interface.py#L703-L705 Maybe also make a test which validates this? (expected behavior -> casting is needed)
I am trying to replicate some of the [basic examples](https://github.com/predict-idlab/plotly-resampler/blob/main/examples/basic_example.ipynb). Especially, I'd like to produce some *png* figures when I share notebooks with others, but when I use `fig.show(renderer="png")`, it...
**Describe the bug** :crayon: When plotting a trace with empty x and y, the legend does not display. Plotly has limited options for customizing the legend, so an empty trace...
related: #288, #98 TODO: - [ ] do we need to lock tsdownsample version (as we now have a hard lock-in on tsdownsample's m4 implementation)? - [ ] maybe allow...
PR #289 introduces the M4 aggregator, whereas PR #294 adds nan-handling to the aggregators. As such, #289 should rebase on main after #294 is merged to main, after which the...
**Describe the bug** :crayon: >I am trying to use plotly-resampler to generate some figures in Dash app with big data. step1. Use gunicorn to deploy it in Linux OS and...