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

Method set_params

lib/matplotlib/ticker.py:2900–2904  ·  view source on GitHub ↗

Set parameters within this locator.

(self, minor=None, **kwargs)

Source from the content-addressed store, hash-verified

2898 super().__init__(nbins=nbins, steps=[1, 2, 5, 10])
2899
2900 def set_params(self, minor=None, **kwargs):
2901 """Set parameters within this locator."""
2902 if minor is not None:
2903 self._minor = minor
2904 super().set_params(**kwargs)
2905
2906 @property
2907 def minor(self):

Callers 5

minorMethod · 0.95
test_maxn_majorMethod · 0.95
test_nbins_majorMethod · 0.95
test_minorMethod · 0.95
test_minor_attrMethod · 0.95

Calls 1

set_paramsMethod · 0.45

Tested by 4

test_maxn_majorMethod · 0.76
test_nbins_majorMethod · 0.76
test_minorMethod · 0.76
test_minor_attrMethod · 0.76