plotly_express
plotly_express copied to clipboard
Plotly Express - Simple syntax for complex charts. Now integrated into plotly.py!
Hello! I am creating a Dash app that includes a map made using the following code: ```python def map(df): fig = px.scatter_mapbox(df, lat="Latitude", lon="Longitude", size="Log(TotalRevenue)", color = "Log(TotalRevenue)", color_continuous_scale=px.colors.sequential.YlOrRd, zoom=2,...
It would be nice if px could infer the order of categorical columns if they are already set in pandas. ```python species_cat = pd.CategoricalDtype(categories=['virginica', 'versicolor', 'setosa'], ordered=True) iris['species2'] = iris['species'].astype(species_cat)...
hello, i tried to run the offical example in .ipynb file on VSCode, but the map was not showing up. the version of plotly which i using is 4.2.1, and...
My dates on x-axis ``` ['2019-05-11T00:00:00.000000000' '2019-05-22T00:00:00.000000000' '2019-05-23T00:00:00.000000000' '2019-05-24T00:00:00.000000000' '2019-05-25T00:00:00.000000000' '2019-05-27T00:00:00.000000000' '2019-05-28T00:00:00.000000000' '2019-05-29T00:00:00.000000000' '2019-05-30T00:00:00.000000000' '2019-05-31T00:00:00.000000000' '2019-06-01T00:00:00.000000000' '2019-05-21T00:00:00.000000000' '2019-05-13T00:00:00.000000000'] ``` Dash / Jupyter won't plot it. However, if it's offline mode,...
Is there a simple way to add widgets (dropdown menus, checkboxes, radio buttons, etc.) similar to the way `animation_frame` is implemented? The reason for this ask rather than using `ipywidgets`...
Hi there. I can't seem to reproduce the following two examples: 1. https://plot.ly/python/selection-events/ 1. https://plot.ly/python/figurewidget-app/, possible duplicate: https://plot.ly/python/widget-app/ Versions:  ## for 1., code was changed a bit to use...
I'd like to be able to set the order in which the items in `color` stack. For example, I'd like to make Sun the top value of this plot: ```...
Hi, I try to make a mosaic plot with bar in plotly express. Because mosaic have different width and height proportion depends on the frequency of data, so I update...
As seen in the attached screenshot: * missing space between x-axis name and legend * extra space between first and second line of legend  Using version 0.3.1