Skip to content

Typos in ticker.py #7108

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 2 commits into from
Sep 14, 2016
Merged
Changes from all commits
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
22 changes: 18 additions & 4 deletions lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
locating and formatting. Although the locators know nothing about major
or minor ticks, they are used by the Axis class to support major and
minor tick locating and formatting. Generic tick locators and
formatters are provided, as well as domain specific custom ones..
formatters are provided, as well as domain specific custom ones.


Default Formatter
Expand Down Expand Up @@ -80,6 +80,9 @@
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 Expand Up @@ -132,8 +135,18 @@
:class:`LogFormatter`
Formatter for log axes

:class:`EngFormatter`
Format labels in engineering notation
:class:`LogFormatterExponent`
Format values for log axis using ``exponent = log_base(value)``.

:class:`LogFormatterMathtext`
Format values for log axis using ``exponent = log_base(value)``
using Math text.

:class:`LogFormatterSciNotation`
Format values for log axis using scientific notation.

:class:`LogitFormatter`
Probability formatter.

:class:`EngFormatter`
Format labels in engineering notation
Expand Down Expand Up @@ -180,11 +193,12 @@
'NullFormatter', 'FuncFormatter', 'FormatStrFormatter',
'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter',
'LogFormatterExponent', 'LogFormatterMathtext',
'IndexFormatter', 'LogFormatterSciNotation',
'LogitFormatter', 'EngFormatter', 'PercentFormatter',
'Locator', 'IndexLocator', 'FixedLocator', 'NullLocator',
'LinearLocator', 'LogLocator', 'AutoLocator',
'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',
'SymmetricalLogLocator')
'SymmetricalLogLocator', 'LogitLocator')


if six.PY3:
Expand Down