-
-
Notifications
You must be signed in to change notification settings - Fork 1
Subplots with plotly express #83
Comments
Yes, you can use |
@nicolaskruchten, is it possible to make subplots where you combine two charts created with plotly express? |
@briangottfried there's no easy way to compose like this at the moment but we're working on it! See this issue: plotly/plotly.py#2647 |
Is there any update on this yet? |
There's no news on composing PX charts like this, but Plotly.py v4 came out this week, and it features a new and much-easier-to-use subplots system! Check it out here https://plot.ly/python/subplots/ Also, as of this week, Plotly Express is now part of Plotly.py (accessible as |
Is it possible to use make_subplots for maps (scatter geos) in plotly express? I currently have a plotly express map with a slider for dates, but would rather have multiple subplots of the different dates. |
You can use See this issue: plotly/plotly.py#2646 |
Wait sorry could you clarify for me: If I have a plotly express map like: how do I put a few of them using make_subplots? Thanks for your help so far! |
Ah sorry: today you can make a figure with a single map with In the future, you'll be able to say |
That sounds great! Could you explain how this interoperability works?
it still throws value errors. |
Yes, the interoperability actually goes the other way: facetted figures created with
As I said, we're working on a solution for this kind of thing but we're not there yet :) See also Composition and Overlaying issues |
Without concerning the right color bar, the scatters can be realized by adding the fist trace of every figure to subplots:
|
How to create subplots in |
@vanshika97 we don't yet support facetting for non-cartesian (i.e. polar) subplots. See this tracking issue: plotly/plotly.py#2646 |
Hey all, It's been a while, I was wondering whether any fix/update has been found for that? Thanks! |
Hi all, Does can I make subplot with plotly express sunburst? It's been a while, but topic did not update solution. |
@xhuyvn at the moment we still only support faceting on 2d cartesian functions like scatter, bar, line etc... see this tracking issue: plotly/plotly.py#2646 |
How to make n number of subplots in plotly? In the below example as the length of list 'x' changes the subplots are plotted. We don't define the row and column number for each subplot. Its plotted automatically in the order of the list elements. We define only total rows and cols for the figure only. import matplotlib.pyplot as plt x=['Plotly','Express','Dash','Python'] fig,ax=plt.subplots(nrows=int(len(x)/2), ncols=2,figsize=(15,7)) for i,j in zip(ax.flat,x): Image as below |
With his help I wrote a method to automate plotting boxplot and violin, for histogram it should be easy but there is some bug. def facetting_data(df, n_cols=3, to_plot='box'):
numeric_cols = df.select_dtypes('number').columns
n_rows = -(-len(numeric_cols) // n_cols) # math.ceil in a fast way, without import
row_pos, col_pos = 1, 0
fig = make_subplots(rows=n_rows, cols=n_cols)
for col in numeric_cols:
# trace extracted from the fig
trace = getattr(px, to_plot)(df[col])["data"][0]
# auto selecting a position of the grid
if col_pos == n_cols: row_pos += 1
col_pos = col_pos + 1 if (col_pos < n_cols) else 1
# adding trace to the grid
fig.add_trace(trace, row=row_pos, col=col_pos)
return fig
fig = facetting_data(data, to_plot='violin')
# final tweaks
fig.update_layout(width=1000, height=800, title='Violin per feature', title_x=0.5)
fig.show() EDIT: For histogram you can use |
@set92 it looks like this In general, folks, I promise I'll post an update on this issue when Plotly Express supports faceting for non-cartesian subplots. We're not working on it in the next couple of months, but we would happily accept a pull request if someone wants to work on it... The main bit of the code that needs modifying is here: https://github.com/plotly/plotly.py/blob/fb84bc52b9f4c424e93402ebfbe7b23502a601f4/packages/python/plotly/plotly/express/_core.py#L2047 |
@bharathngowda please check out the |
@nicolaskruchten I think they don't. For what I saw For example, the first image is with a direct call, and the second is using the
Reproducible example with scatter+regression plot, since is a little bit different than previous function: import plotly.express as px
df = pd.read_csv('World_Happiness_2015_2017_.csv')
px.scatter(df, x=df.select_dtypes(np.float64).columns, y='Happiness Score', trendline='ols') And with the function, that updated to work with 2 traces per graph is: def facetting_scatter_plot(df, n_cols=3, y='Happiness Score'):
numeric_cols = df.select_dtypes('number').columns
n_rows = -(-len(numeric_cols) // n_cols) # math.ceil in a fast way, without import
row_pos, col_pos = 1, 0
fig = make_subplots(rows=n_rows, cols=n_cols, subplot_titles=numeric_cols)
for col in numeric_cols:
# trace extracted from the fig
trace = px.scatter(df, x=col, y=y, trendline='ols', trendline_color_override='#DC143C')["data"]
# auto selecting a position of the grid
if col_pos == n_cols: row_pos += 1
col_pos = col_pos + 1 if (col_pos < n_cols) else 1
# adding trace to the grid
fig.add_trace(trace[0], row=row_pos, col=col_pos)
fig.add_trace(trace[1], row=row_pos, col=col_pos)
return fig
fig = facetting_scatter_plot(data.select_dtypes(np.float64))
# final tweaks
fig.update_layout(width=1000, height=800, title='% of variation in Happiness Score explained by each feature', title_x=0.5)
fig.show() And it returns: |
You can do almost the same thing with px.scatter(df, x=df.select_dtypes(np.float64).columns, y='Happiness Score', trendline='ols',
facet_col="variable", facet_col_wrap=3).update_xaxes(matches=None) |
This issue is kind of branching off into various directions so I've created a few different issues to track different parts of it, as well as worked to clarify our documentation (links below) so I'm going to close it and lock it now. Tracking issues:
Documentation: |
Can i do subplots, where each subplot is a time series chart using plotly express ?
The text was updated successfully, but these errors were encountered: