You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I'm a recent plotly convert with particular appreciation for the express interface.
I think it's entirely possible to produce publication quality figures using only express and some layout adjustments. The necessary code is also succinct and easily readable, which is a welcome bonus when sharing notebooks with students/collaborators/the public for education/validation/the-plot-is-not-the-point purposes.
Therefore, I propose that the BaseFigure.update method be extended if possible, or an update_subplots method be implemented which improves a typical interactive workflow from this:
I'm imagining the usual selector, row, col arguments as one possibility.
In this case, the selected xaxisN, yaxisN are updated with the corresponding figure's xaxis yaxis. Of course the axis_domain would probably have to be an exception. or perhaps the overwrite keyword could be used to control the merging of layouts. However, I feel the update method's overwrite switch has some unexpected behavior.
This is demonstrated in that I've used overwrite=false in every call above and yet I still have to copy the p0 layout in order to retain the p0 domains. I'm probably misunderstanding its purpose.
I also imagine the new figure will adopt top level layout properties from the constituents, probably with conflicting assignments simply resolved by order of calls. Finally, there are probably complications when the subfigure has subplots itself which I've not thought through.
I look forward to your input,
Panos
The text was updated successfully, but these errors were encountered:
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
Hello. I'm a recent plotly convert with particular appreciation for the express interface.
I think it's entirely possible to produce publication quality figures using only express and some layout adjustments. The necessary code is also succinct and easily readable, which is a welcome bonus when sharing notebooks with students/collaborators/the public for education/validation/the-plot-is-not-the-point purposes.
Therefore, I propose that the BaseFigure.update method be extended if possible, or an update_subplots method be implemented which improves a typical interactive workflow from this:
to something like:
I'm imagining the usual selector, row, col arguments as one possibility.
In this case, the selected xaxisN, yaxisN are updated with the corresponding figure's xaxis yaxis. Of course the axis_domain would probably have to be an exception. or perhaps the overwrite keyword could be used to control the merging of layouts. However, I feel the update method's overwrite switch has some unexpected behavior.
This is demonstrated in that I've used overwrite=false in every call above and yet I still have to copy the p0 layout in order to retain the p0 domains. I'm probably misunderstanding its purpose.
I also imagine the new figure will adopt top level layout properties from the constituents, probably with conflicting assignments simply resolved by order of calls. Finally, there are probably complications when the subfigure has subplots itself which I've not thought through.
I look forward to your input,
Panos
The text was updated successfully, but these errors were encountered: