(self)
| 78 | class SeriesQuantileTdigest(SeriesQuantile): |
| 79 | @functools.cached_property |
| 80 | def _meta(self): |
| 81 | import_required( |
| 82 | "crick", "crick is a required dependency for using the tdigest method." |
| 83 | ) |
| 84 | return super()._meta |
| 85 | |
| 86 | def _layer(self) -> dict: |
| 87 | from dask.array.percentile import _percentiles_from_tdigest, _tdigest_chunk |
nothing calls this directly
no test coverage detected