8000 Typo fix in Ticker API by adamjstewart · Pull Request #11871 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Typo fix in Ticker API #11871

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

Merged
merged 1 commit into from
Aug 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
8000
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/devel/MEP/MEP24.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ but this seems more generally useful (for example growth rate as a
function of angle). The assumption in the current code (as I
understand it) is that the center of the graph is `r==0`, however it
would be good to be able to set the center to be at any `r` (with any
value less than the off set clipped).
value less than the offset clipped).

Implementation
==============
Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
-----------------

The default formatter identifies when the x-data being plotted is a
small range on top of a large off set. To reduce the chances that the
ticklabels overlap the ticks are labeled as deltas from a fixed offset.
small range on top of a large offset. To reduce the chances that the
ticklabels overlap, the ticks are labeled as deltas from a fixed offset.
For example::

ax.plot(np.arange(2000, 2010), range(10))
Expand Down
0