plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
By default, if running a python script and doing `fig.show()`, there is no way to control the title of the browser window/tab. Ideally, you'd be able to inject a `MYTITLE`...
classmethod plotly.graph_objects.Figure.add_image and class plotly.graph_objects.Image have z as a parameter, which accepts: "A 2-dimensional array in which each element is an array of 3 or 4 numbers representing a color"....
I'm getting a `DeprecationWarning` when this line is run. https://github.com/plotly/plotly.py/blob/00c18fd0d09a21f7d0f54c383ff5258fe1ff7d28/packages/python/plotly/plotly/graph_objs/__init__.py#L272 ``` python DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. ```
Is it possible to change the appearance of bar charts so they look more like the images below? Is it possible to change the shape of the bar and create...
Hi! For a couple of month I was able to export jupyter notebooks which include ipywidgets and plotly figures to html. Everything was working as expected. But yesterday I opened...
Plotly's `FigureWidget` does not appear to be compatible with the upcoming ipywidgets release. ```sh python -m venv .venv . ./.venv/bin/activate pip install plotly jupyterlab ipywidgets==8.0.0rc0 jupyer-lab ``` If using directly...
## Summary This fixes the following warning we get for `chart_studio`: ``` /opt/conda/lib/python3.8/site-packages/chart_studio/tools.py:290: SyntaxWarning: "is" with a literal. Did you mean "=="? if share_key is "": ``` We should be...
I've noticed this issue using Plotly with Dash & also reproduced in my own Jupyter notebook. Here is a code sample reproducing the issue : ``` import plotly.express as px...
I'm creating polar barplots to visualize angular histograms. These plots do have a zoom option in the modebar, but not a resetScale or zoomout. So I can zoom in, but...