|
6 | 6 | locating and formatting. Although the locators know nothing about major
|
7 | 7 | or minor ticks, they are used by the Axis class to support major and
|
8 | 8 | minor tick locating and formatting. Generic tick locators and
|
9 |
| -formatters are provided, as well as domain specific custom ones.. |
| 9 | +formatters are provided, as well as domain specific custom ones. |
10 | 10 |
|
11 | 11 |
|
12 | 12 | Default Formatter
|
|
80 | 80 | tick interval into a specified number of minor intervals,
|
81 | 81 | defaulting to 4 or 5 depending on the major interval.
|
82 | 82 |
|
| 83 | +:class:`LogitLocator` |
| 84 | + Locator for logit scaling. |
| 85 | +
|
83 | 86 |
|
84 | 87 | There are a number of locators specialized for date locations - see
|
85 | 88 | the dates module
|
|
132 | 135 | :class:`LogFormatter`
|
133 | 136 | Formatter for log axes
|
134 | 137 |
|
135 |
| -:class:`EngFormatter` |
136 |
| - Format labels in engineering notation |
| 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. |
137 | 150 |
|
138 | 151 |
|
139 | 152 | You can derive your own formatter from the Formatter base class by
|
|