Return whether this Axis is autoscaled.
(self)
| 847 | return data if np.all(valid) else np.where(valid, data, np.nan) |
| 848 | |
| 849 | def _get_autoscale_on(self): |
| 850 | """Return whether this Axis is autoscaled.""" |
| 851 | return self._autoscale_on |
| 852 | |
| 853 | def _set_autoscale_on(self, b): |
| 854 | """ |
no outgoing calls
no test coverage detected