The plotly.express module (usually imported as px) contains functions that can create entire figures at once, and is referred to as Plotly Express or PX. Plotly Express is a built-in part of the plotly library, and is the recommended starting point for creating most common figures.
Questions tagged [plotly-express]
365 questions
-1
votes
1 answer
Merge two animations in plotly express (One with colorbar the other without)
Can I merge two animations in potly express, where one animation is attached to a colorbar and the other is not?
Like merging these two animations:
-1
votes
1 answer
plot line chart, regardless the order of x axis python
i have a dataframe with two columns. MachineID and Value. I sort the dataframe to descending order(machines with high values first) and plot the line chart. But still, it shows the x axis(MachineID 1 to 60, rather than taking the highest values…
user13419531
-1
votes
1 answer
Is there a way to customize the color_continuous_scale argument with hex color code in Plotly Express?
I've searched around for a while now and I am trying to customize the color scale by hex color code, but I could not find a valid way to do it. Is the default preset color sales the only option for us? This is for a map generated by plotly's mapbox…

beekwool
- 1
- 1
-1
votes
1 answer
Color specific bar (discrete or continuous) like plotly express based on X axis value
I want to use bar and line chart in same axis with bar having a color code based on a different variable and pass that as a return in Dash.In plotly express a color argument is passed into trace but in dash its not retruning fig to dcc.graph.Can…

Kris
- 47
- 5
-2
votes
1 answer
Scatter plot derived from two pandas dataframes with multiple columns in plotly [express]
I want to create a scatter plot that drives its x values from one dataframe and y values from another dataframe having multiple columns.
x_df :
red blue
0 1 2
1 2 3
2 3 4
y_df:
red blue
0 1 2
1 2 3
2 3 4
I want to…

DDStackoverflow
- 505
- 1
- 11
- 26