plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
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...
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...
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
## 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...
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()...
``` 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=[...
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`...
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...
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,...
We would like to request an option to enable "out of visible range" arrows for boxplots. See below screenshot for an example:  The intention is to show the reader...