Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable plotly express figure composition #2647

Open
nicolaskruchten opened this issue Jul 16, 2020 · 12 comments
Open

enable plotly express figure composition #2647

nicolaskruchten opened this issue Jul 16, 2020 · 12 comments
Labels
feature something new P3 backlog
Milestone

Comments

@nicolaskruchten
Copy link
Contributor

nicolaskruchten commented Jul 16, 2020

It would be really nice to be able to take two figures created with Plotly Express (or really anything else) and "glue them together" side by side or one above the other, something like fig3 = compose([fig1, fig2, fig3], orientation="h") or something even more powerful.

I love how ggplot patchwork https://github.com/thomasp85/patchwork and Altair https://altair-viz.github.io/user_guide/compound_charts.html do this!

See also Overlaying: #2648

@JayPalm
Copy link

JayPalm commented Jul 24, 2020

Just spent half an hour looking for a solution to this. Any progress made this week? I need to make some 2x2 subplots with different Y axes. Compose would be very helpful!

@vcmorini
Copy link

vcmorini commented Aug 11, 2020

This would be a necessary feature, already strongly suggested by the community. The solutions so far are either not native Plotly or depreciates the PX design, for example, by taking only the trace, and leaving the layout out. See: plotly/plotly_express#83 (comment)
In the mentioned way, the rug, color, etc, are totally ignored.

@nicolaskruchten
Copy link
Contributor Author

If anyone wants to take this on, I'd be happy to review the code :) It's not on our short-term roadmap at the moment, despite how useful it would be!

@dkapitan
Copy link

@nicolaskruchten

Am considering to take up this issue. Running into the following difficulty when trying to figure out a solution on Google Colab:

!pip install plotly==4.12.0

import pandas as pd
import plotly.express as px
from plotly.subplots import make_subplots


pd.options.plotting.backend = 'plotly'

# Ames Housing dataset
df = pd.read_csv('https://github.com/jads-nl/discover-projects/blob/main/ames-housing/AmesHousing.csv?raw=true')

fig = make_subplots(rows=1, cols=2, shared_xaxes=False, shared_yaxes=False)
fig.add_trace(df.SalePrice.hist().data[0], row=1, col=1)
fig.add_trace(df['Year Built'].hist().data[0], row=1, col=2)

The second histogram on the right does not render properly, something goed wrong with the axis and/or default values. I can't see which setting causes this. Could you give a pointer in the right direction perhaps?
Screenshot 2020-11-21 at 11 49 16

@nicolaskruchten
Copy link
Contributor Author

Hmm this last one is kind of funny... What's happening here is that both the traces you're extracting with data[0] have bingroup: "x" (where "x" is just an arbitrary string, but it's the PX default) and so the right-hand plot is getting all its data stuck in a single bin! Definitely something we'll have to manage with this composition issue!

If you run fig.update_traces(bingroup=None) after your code that'll clear the groups and each trace will be binned on its own.

@Naseefop
Copy link

Any updates here?.
Spend 1-hour searching for a solution!!

@ericchansen
Copy link

I am also hoping for this functionality.

@atar-axis
Copy link

Please add this! I would also add some bugs to the bucket if needed. Where can I donate?

@lopez-hector
Copy link

Just pinging this. Would be helpful.

@Coding-with-Adam Coding-with-Adam added feature something new p4 labels Feb 23, 2024
@gvwilson
Copy link
Contributor

gvwilson commented Jul 8, 2024

Hi - we are trying to tidy up the stale issues and PRs in Plotly's public repositories so that we can focus on things that are still important to our community. Since this one has been sitting for a while, I'm going to close it; if it is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. Alternatively, if it's a request for tech support, please post in our community forum. Thank you - @gvwilson

@gvwilson gvwilson closed this as completed Jul 8, 2024
@Grisly00
Copy link

Hi - we are trying to tidy up the stale issues and PRs in Plotly's public repositories so that we can focus on things that are still important to our community. Since this one has been sitting for a while, I'm going to close it; if it is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. Alternatively, if it's a request for tech support, please post in our community forum. Thank you - @gvwilson

As far as I know there is still now way to make a composition of multiple figures created with Plotly Express. So yes, still an issue.

@gvwilson gvwilson reopened this Jul 16, 2024
@gvwilson gvwilson self-assigned this Jul 16, 2024
@gvwilson gvwilson removed their assignment Aug 2, 2024
@gvwilson gvwilson added P3 backlog and removed ♥ NEEDS SPON$OR labels Aug 12, 2024
@gvwilson gvwilson changed the title PX figure composition enable plotly express figure composition Aug 12, 2024
@nzjrs
Copy link

nzjrs commented Aug 15, 2024

ig3 = compose([fig1, fig2, fig3], orientation="h") would be a perfect API for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature something new P3 backlog
Projects
None yet
Development

No branches or pull requests