(self)
| 41 | return make_meta(meta_nonempty(meta).quantile(self.operand("q"))) |
| 42 | |
| 43 | def _divisions(self): |
| 44 | if is_series_like(self._meta): |
| 45 | return (np.min(self.q), np.max(self.q)) |
| 46 | return (None, None) |
| 47 | |
| 48 | @functools.cached_property |
| 49 | def _constructor(self): |
nothing calls this directly
no test coverage detected