MCPcopy Create free account
hub / github.com/dask/dask / explain

Method explain

dask/_expr.py:127–132  ·  view source on GitHub ↗
(
        self, stage: OptimizerStage = "fused", format: str | None = None
    )

Source from the content-addressed store, hash-verified

125 return analyze(self, filename=filename, format=format)
126
127 def explain(
128 self, stage: OptimizerStage = "fused", format: str | None = None
129 ) -> None:
130 from dask.dataframe.dask_expr.diagnostics import explain
131
132 return explain(self, stage, format)
133
134 def pprint(self):
135 for line in self._tree_repr_lines():

Callers

nothing calls this directly

Calls 1

explainFunction · 0.90

Tested by

no test coverage detected