MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/matplotlib/scale.py:613–615  ·  view source on GitHub ↗
(self, axis=None, *, base=10, linthresh=2, subs=None, linscale=1)

Source from the content-addressed store, hash-verified

611
612 @_make_axis_parameter_optional
613 def __init__(self, axis=None, *, base=10, linthresh=2, subs=None, linscale=1):
614 self._transform = SymmetricalLogTransform(base, linthresh, linscale)
615 self.subs = subs
616
617 base = property(lambda self: self._transform.base)
618 linthresh = property(lambda self: self._transform.linthresh)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected