plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
### Feature Request: Add support for stem plots **Description:** The `stem` plot is widely used in [MATLAB](https://www.mathworks.com/help/matlab/ref/stem.html)/[Octave](https://octave.sourceforge.io/octave/function/stem.html)/Python([matplotlib.pyplot.stem](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.stem.html)) to represent discrete data with markers and stems (vertical lines) connecting the data...
# Problem definition I wrote an application that loads properties of a sankey plot from a file and displays it. I'd like to be able to manually (drag and drop)...
The scroll zoom works fine, except when commenting-in the `update_layout` part. In that case, the zoom oscillates back and forth occasionally. Both Firefox and Chromium are affected. It affects smooth...
Create a quiver plot example for the docs that uses `marker.angle`and `marker.size`
When the slider moves, the axes don't adjust to the new data range, but if we download the plot with the current slider selection the view is correct. https://github.com/user-attachments/assets/9305c8f8-4724-4b96-9f0f-dbaf5159df4c ##...
### Documentation PR - [ ] I've [seen the `doc/README.md` file](https://github.com/plotly/plotly.py/blob/master/doc/README.md) - [ ] This change runs in the current version of Plotly on PyPI and targets the `doc-prod` branch...
`heatmapgl` was removed in Plotly.js here https://github.com/plotly/plotly.js/pull/7213 It looks like there are some changes required in Plotly.py that aren't covered by the codegen as after running codegen against plotly.js master...
Hi There! We are using `jupyter-plotly` to support plotly plots in [mystmd's web themes](https://mystmd.org) to enable people publishing jupyter notebooks with plotly outputs to have their plots displayed and active...
When using a `DataFrame` with scrambled (and optionally sparse) index values (like you'd get from `sklearn.model_selection.train_test_split()`) and the `color` field in a `px` function, the `DataFrame` is split into a...
Take this example whereby I set the `exponentformat="SI"` to use SI prefixes for the y-axis: ```python import plotly.express as px import pandas as pd import numpy as np df =...