Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
More precise choice of axes limits. #6192
Conversation
tacaswell
added the
needs_review
label
Mar 20, 2016
tacaswell
added this to the
2.0 (style change major release)
milestone
Mar 20, 2016
tacaswell
added a commit
that referenced
this pull request
Mar 20, 2016
|
|
tacaswell |
996f3ec
|
tacaswell
merged commit 996f3ec
into matplotlib:master
Mar 20, 2016
tacaswell
removed the
needs_review
label
Mar 20, 2016
tacaswell
added a commit
that referenced
this pull request
Mar 20, 2016
|
|
tacaswell |
cd7a02e
|
|
Backported to v2.x as cd7a02e This seems too disruptive to push back to 1.5.x, but could be convinced other wise. |
jenshnielsen
deleted the
jenshnielsen:tighter-axes-limits branch
Mar 21, 2016
This was referenced Apr 2, 2016
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tacaswell commentedMar 20, 2016
plt.plot([-.1, .2]) used to pick (in round numbers mode) [-.1, .25] as
ylims due to floating point inaccuracies; change it to pick [-.1, .2](up to floating point inaccuracies).
Support for the (unused and deprecated-in-comment) "trim" keyword
argument has been dropped as the way ticks are picked has changed.
Many test images have changed!
Implementation notes:
around.
See #5767, #5738.
Replaces #5768