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

Hey all, So I was using Cone plots to visualize a 3D vector field in my application, and I found that the Cone-size AND Cone-color are both a function of...

**pyenv** with plotly 4.0.0 ![image](https://user-images.githubusercontent.com/1144737/62295282-f74d0b80-b46c-11e9-9eb8-3e388274aa79.png) Where is the plot; what is necessary to install/ configure?

I am making an error bar plot using px.scatter. I want to set each error bar to the same color as the marker. Below is the code showing how I...

I am plotting a chart with a `pd.Categorical` series on the x-axis. The category has a sort defined. Expected behaviour: the axis is sorted as per the underlying category definition...

*Note: to reproduce, see [here](https://colab.research.google.com/drive/17ccVjooMHfc2areydWQp8sekOGGdkrnO?usp=sharing)* # The problem ## Baseline ```python long_df = px.data.medals_long() fig = px.bar(long_df, x="nation", y="count", color="medal", title="Long-Form") fig.update_layout(width=680, height=480,) fig.show() ``` works just fine: ![newplot (3)](https://user-images.githubusercontent.com/8312051/176818816-4cbdf31d-5b76-4d70-97a8-f58d875ed69a.png)...

bug
sev-4

I'm currently wondering if this is a bug or an expected behavior: https://community.plotly.com/t/subplot-individual-height/65599 I'm trying to have the first few rows heights fixed across different plots, but the last row...

Hello! I am using `plotly 5.7.0` `jupyterlab 3.3.2` `ipywidgets 7.7.0` (these are the latest versions of each package) I am not using Dash. What I am trying to achieve is...

bug
P3

Consider the following example: ```python import plotly.express as px import pandas as pd import numpy as np import plotly np.random.seed(0) n_samples = 1000 df = pd.DataFrame({ 'x': np.random.randint(low=1, high=5, size=n_samples),...

Hi guys Im using plotly to create subplots (make_subplots), my problem is that these subplots scale when the number of rows differ. For example when when (row=2,col=1) my subplots have...