plotly_express icon indicating copy to clipboard operation
plotly_express copied to clipboard

Plotly Express - Simple syntax for complex charts. Now integrated into plotly.py!

Results 48 plotly_express issues
Sort by recently updated
recently updated
newest added

Great job on plotly_express, thanks! One of the coolest features of Rosling's renowned Gapminder charts, was also to be able to trace the movement of the bubbles over time. Not...

from https://community.plot.ly/t/plotly-express-scatterplot-matrix-diagonal/21464 > Is it somehow possible to set the diagonal of the scatterplot matrix in plotly express to a histogram like in pandas? And even more better like seaborns...

``` px.density_heatmap(iris, x="sepal_length", y="sepal_width", facet_row='species', marginal_x="rug", marginal_y="histogram",width=800) ``` same for density_contour ![image](https://user-images.githubusercontent.com/3208181/60757219-38b4dd00-9fcd-11e9-93ab-a84f419df72b.png) In stead of faceting, the chart default to overlay somehow.

I'm trying to save my notebook with plotly express figures inside, and then share them with others using nbviewer. Currently, the areas where plots show up in JupyterLab have blank...

Is there a way to color a `line_mapbox` plot by a continuous variable? It looks like when I specify the `color` for a `line_mapbox` as a continuous float column, the...

Trying any of the examples direclty in an IPython session does not work. Namely when you do `fig.show()` nothing happens. (I've already posted this on [stackoverflow]() and the [community](https://community.plotly.com/t/plotly-express-not-working-with-ipython/62629) and...

I have a plotly express graph with marginal subplots and animation frame: ``` python fig = px.scatter( timeseries_heating, x="air_temperature", y="heating_degree_hours_", color="meter", animation_frame="base_temperature", opacity=0.7, marginal_x="violin", marginal_y="violin", hover_name="building_id", category_orders=category_orders, color_discrete_map=color_discrete_map_meter, ) fig.show()...

Hi all. I am still new to plotly/px, so apologies if this is a simple fix. I have a strip plot. I want to overlay a bar plot representing the...

When you animate scatter plot with the mode 'Markes+lines', the line disapear during the animation. plotly.version= '4.0.0' Ex: ``` import numpy as np import pandas as pd import plotly.express as...

Hey, I wonder how I can do that. I tried it the follwoing way, but it also need very much time if you have a lot of `add_vrect `to add......