(self, axis=None, *, base=10, linthresh=2, subs=None, linscale=1)
| 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) |
nothing calls this directly
no test coverage detected