Merged
Conversation
Collaborator
|
10 years later... looks good to me, thanks! Here's an example with this feature turned off and on: fig, axs = plot.subplots(ncols=3, share=False, wequal=False)
axs[2].format(yformatter='null')
axs[1].format(ylabel='ylabel\nylabel\nylabel')
fig.show()fig, axs = plot.subplots(ncols=3, share=False, wequal=True)
axs[2].format(yformatter='null')
axs[1].format(ylabel='ylabel\nylabel\nylabel')
fig.show()Will add this to the changelog + update the contributors list |
Collaborator
|
(Closes #64) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


This would add the feature of #64, the ability to set
hspacebetween all rows,wspacebetween all columns, or both, based on the calculated maximum value in ProPlot's layout routine.I am not sure if this follows what you were suggesting in this comment. It seems to work, but the gridspec's idea of
hspaceandwspacedon't seem to match how the figure shows up (see my example, maybe I am printing the wrong thing).See in action here.