@@ -2262,19 +2262,19 @@ class LogLocator(Locator):
2262
2262
2263
2263
def __init__ (self ,base = 10.0 ,subs = (1.0 ,),numdecs = 4 ,numticks = None ):
2264
2264
"""
2265
- Place tickson the locations : subs[j] * base**i
2265
+ Place ticksat values `` subs[j] * base**n``.
2266
2266
2267
2267
Parameters
2268
2268
----------
2269
2269
base : float, default: 10.0
2270
2270
The base of the log used, so major ticks are placed at
2271
- ``base**n``,n integer.
2272
- subs : None orstr or sequence of float, default: (1.0,)
2271
+ ``base**n``,where ``n`` is an integer.
2272
+ subs : None or{'auto', 'all'} or sequence of float, default: (1.0,)
2273
2273
Gives the multiples of integer powers of the base at which
2274
- to place ticks. The default places ticks only at
2274
+ to place ticks. The defaultof ``(1.0, )`` places ticks only at
2275
2275
integer powers of the base.
2276
- The permitted string values are ``'auto'`` and ``'all'``,
2277
- both ofwhich use an algorithm based on the axis view
2276
+ Permitted string values are ``'auto'`` and ``'all'``.
2277
+ Both ofthese use an algorithm based on the axis view
2278
2278
limits to determine whether and how to put ticks between
2279
2279
integer powers of the base. With ``'auto'``, ticks are
2280
2280
placed only between integer powers; with ``'all'``, the