Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Better axis limits when using shared axes and empty subplots#2357

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
dmcdougall merged 1 commit intomatplotlib:masterfromChrisBeaumont:empty-shared
Aug 31, 2013

Conversation

ChrisBeaumont
Copy link
Contributor

This is one possible solution to#2356

@@ -1895,6 +1895,10 @@ def autoscale_view(self, tight=None, scalex=True, scaley=True):
if scalex and self._autoscaleXon:
xshared = self._shared_x_axes.get_siblings(self)
dl = [ax.dataLim for ax in xshared]
#ignore non-finite data limits if good limits exist
if any(np.isfinite(d).all() for d in dl):
dl = [d for d in dl if np.isfinite(d).all()]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I wonder if there's a way to do this without calculatingnp.isfinite(d).all() twice for each element. Maybe something like:

finite_dl = [d for d in dl if np.isfinite(d).all()]if len(finite_dl):    dl = finite_dl

@mdboom
Copy link
Member

Looks good. Needs a test -- I don't think it will need to be an image comparison test.

@ChrisBeaumont
Copy link
ContributorAuthor

Added a test

@mdboom
Copy link
Member

Ok. 👍 from me, then. Might let this sit for a few days to get other feedback, but this makes sense to me.

dmcdougall added a commit that referenced this pull requestAug 31, 2013
Better axis limits when using shared axes and empty subplots
@dmcdougalldmcdougall merged commita091f6d intomatplotlib:masterAug 31, 2013
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@ChrisBeaumont@mdboom@dmcdougall

[8]ページ先頭

©2009-2025 Movatter.jp