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

Commit 42eb60b

Browse filesBrowse files
authored
Add missing tickers and locators to docs
1 parent 76ab9de commit 42eb60b
Copy full SHA for 42eb60b

File tree

Expand file treeCollapse file tree

1 file changed

+18
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+18
-1
lines changed

‎lib/matplotlib/ticker.py

Copy file name to clipboardExpand all lines: lib/matplotlib/ticker.py
+18-1Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@
8080
tick interval into a specified number of minor intervals,
8181
defaulting to 4 or 5 depending on the major interval.
8282
83+
:class:`LogitLocator`
84+
Locator for logit scaling.
85+
8386
8487
There are a number of locators specialized for date locations - see
8588
the dates module
@@ -132,6 +135,19 @@
132135
:class:`LogFormatter`
133136
Formatter for log axes
134137
138+
:class:`LogFormatterExponent`
139+
Format values for log axis using ``exponent = log_base(value)``.
140+
141+
:class:`LogFormatterMathtext`
142+
Format values for log axis using ``exponent = log_base(value)``
143+
using Math text.
144+
145+
:class:`LogFormatterSciNotation`
146+
Format values for log axis using scientific notation.
147+
148+
:class:`LogitFormatter`
149+
Probability formatter.
150+
135151
:class:`EngFormatter`
136152
Format labels in engineering notation
137153
@@ -177,11 +193,12 @@
177193
'NullFormatter', 'FuncFormatter', 'FormatStrFormatter',
178194
'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter',
179195
'LogFormatterExponent', 'LogFormatterMathtext',
196+
'IndexFormatter', 'LogFormatterSciNotation',
180197
'LogitFormatter', 'EngFormatter', 'PercentFormatter',
181198
'Locator', 'IndexLocator', 'FixedLocator', 'NullLocator',
182199
'LinearLocator', 'LogLocator', 'AutoLocator',
183200
'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',
184-
'SymmetricalLogLocator')
201+
'SymmetricalLogLocator', 'LogitLocator')
185202

186203

187204
if six.PY3:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.