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

I´m trying the next code, but the atributte labels not is working ```python import plotly.express as px d = {'col1': [1, 2, 3], 'col2': [3, 4, 5]} df = pd.DataFrame(data=d)...

The following code creates a 2D subplot in the left column and a 3D subplot in the right column. Adding a vertical line to the 2D subplot fails if a...

## Description `px.scatter()` errors when `size` param is **Pandas extension dtype Int64**. However, `size` param works as expected with standard/numpy **int64.** The new Pandas Extension dtypes should be supported in...

bug
sev-2

When using combined subplot the hover for "xy" and "polar" charts does not work when combining those types with a parallel coordinates chart. The "scene" chart type is not affected....

I have tried: `locale.setlocale(locale.LC_ALL , 'de_DE')` and ```python config = { 'locale': 'de-DE' } fig.show(config=config) ``` But the modebar tooltips are still in English ![image](https://user-images.githubusercontent.com/51693106/187193822-685b2be0-23b0-4602-a2d0-9597c3542281.png) Is there any way to...

Importing plotly.tools changes warnings.formatwarning as a side effect. Is this necessary? If not, it would be better to only do this when requested explicitely. Example: ``` import warnings print(warnings.formatwarning) import...

Thanks for your interest in Plotly.py! Before opening an issue, please search for existing and closed issues :) **Please** accompany bug reports with a reproducible example. Please use the [latest...

The violin plot docs mention [Choosing The Algorithm For Computing Quartiles ](https://plotly.com/python/violin/#choosing-the-algorithm-for-computing-quartiles) and "New in 5.1.0" However, if you run the example code in `5.3.1` it errors --- ## Version...

Hi everyone! I'm currently trying to create 50 subplots which will update each second like real time. I don't use dash because visualizing with Jupiter is more important for me....

Currently, the mode bar download button can support png, svg, jpeg and webp as options to toImageButtonOptions. There is also fig.write_html() which can be used too save an interactive html...