plotly.py icon indicating copy to clipboard operation
plotly.py copied to clipboard

The interactive graphing library for Python :sparkles: This project now includes Plotly Express!

Results 707 plotly.py issues
Sort by recently updated
recently updated
newest added

When calling `write_image` on a figure, it is required that `kaleido` is installed in the active environment. It would be great if this dependency were declared in pyproject.toml as an...

feature
P3
infrastructure

It would be great both to have auto mode for the `xticks` yet being able to set them to be integer values only. One could set them manually but them...

feature
P3

We are adding new maps here: https://github.com/plotly/plotly.js/pull/7060 so should add to plotly.express too `plotly.express` has a number of mapbox charts https://github.com/plotly/plotly.py/blob/master/packages/python/plotly/plotly/express/_chart_types.py

feature
P1

## Motivation I'm a huge fan of Plotly Express Sunburst charts, but when viewing data with lots of small proportions (that are meaningful), it can be difficult to expand individual...

feature
P3

Here is the code: ```python import plotly.graph_objects as go import numpy as np import ipywidgets np.random.seed(1) scatter_1 = go.Scatter3d(x=np.random.rand(100), y=np.random.rand(100), z=np.random.rand(100), mode='markers', marker={"size":2},) f = go.FigureWidget() f.add_trace(scatter_1) o = ipywidgets.Output()...

bug
P3

``` import pandas as pd import plotly.graph_objects as go df = pd.DataFrame( { "A": [5, 0, 7], "B": [5, 0, 7], }, index=[1, 2, 3], ) fig = go.Figure( data=[...

bug
P3

I noticied two different behavior while using (`ticksuffix` or `tickprefix`) and `tickvals` parameter to update an axis when I want to display or save the graph. Plotly version : `5.22.0`...

bug
P2

We would like to make use of an `omit_first_ticklabels` and 'omit_last_ticklabels' property on the axes. The property should allow to hide the first X or last X ticklabels, which would...

feature
P3
cs

In the following chart, the xaxis tick for 1st of January 2022 is missing. When panning on the xaxis, the tick appears. When I disable rangebreaks, the tick also appears,...

bug
P2
cs

We would like to request an option to enable "out of visible range" arrows for boxplots. See below screenshot for an example: ![image](https://github.com/user-attachments/assets/f23b9379-c540-4696-bb1a-1c620ad0e03a) The intention is to show the reader...

feature
P3
cs