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

Appearance settings

Minor doc markup fixes. #9262

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 3 commits into from
Oct 29, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC: tweak ticker.py module docs
  • Loading branch information
tacaswell authored and anntzer committed Oct 29, 2017
commit d41e963617c7c58032a99ec338902dbfac0787d1
41 changes: 21 additions & 20 deletions 41 lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,47 +37,48 @@

The Locator subclasses defined here are

:class:`NullLocator`
No ticks.
:class:`AutoLocator`
`MaxNLocator` with simple defaults. This is the default tick locator for
most plotting.

:class:`MaxNLocator`
Finds up to a max number of intervals with ticks at nice locations.

:class:`LinearLocator`
Space ticks evenly from min to max.

:class:`LogLocator`
Space ticks logarithmically from min to max.

:class:`MultipleLocator`
Ticks and range are a multiple of base; either integer or float.

:class:`FixedLocator`
Tick locations are fixed.

:class:`IndexLocator`
Locator for index plots (e.g., where ``x = range(len(y))``).

:class:`LinearLocator`
Evenly spaced ticks from min to max.

:class:`LogLocator`
Logarithmically ticks from min to max.
:class:`NullLocator`
No ticks.

:class:`SymmetricalLogLocator`
Locator for use with with the symlog norm; works like `LogLocator` for the
part outside of the threshold and add 0 if inside the limits.
part outside of the threshold and adds 0 if inside the limits.

:class:`MultipleLocator`
Ticks and range are a multiple of base; either integer or float.
:class:`LogitLocator`
Locator for logit scaling.

:class:`OldAutoLocator`
Choose a `MultipleLocator` and dyamically reassign it for intelligent
Choose a `MultipleLocator` and dynamically reassign it for intelligent
ticking during navigation.

:class:`MaxNLocator`
Finds up to a max number of ticks at nice locations.

:class:`AutoLocator`
`MaxNLocator` with simple defaults. This is the default tick locator for
most plotting.

:class:`AutoMinorLocator`
Locator for minor ticks when the axis is linear and the
major ticks are uniformly spaced. Subdivides the major
tick interval into a specified number of minor intervals,
defaulting to 4 or 5 depending on the major interval.

:class:`LogitLocator`
Locator for logit scaling.

There are a number of locators specialized for date locations - see
the `dates` module.
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.