-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Incorrect fill_betweenx interpolation #9235
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
Milestone
Comments
Ah, it works if I reverse all of the data arrays. |
This was referenced Sep 26, 2017
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
One of the calls to interp passes data which is not guaranteed to be in increasing order, which interp requires. Just use argsort the data, like is done above.
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
One of the calls to interp passes data which is not guaranteed to be in increasing order, which interp requires. Just use argsort the data, like is done above.
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
One of the calls to interp passes data which is not guaranteed to be in increasing order, which interp requires. Just use argsort the data, like is done above.
dopplershift
added a commit
to dopplershift/matplotlib
that referenced
this issue
Sep 26, 2017
Closed by #9236 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This sample:
is producing incorrect results on 2.1rc:
The text was updated successfully, but these errors were encountered: