MCPcopy Index your code
hub / github.com/dask/dask / explain

Method explain

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

Source from the content-addressed store, hash-verified

120 return analyze(self, filename=filename, format=format)
121
122 def explain(
123 self, stage: OptimizerStage = "fused", format: str | None = None
124 ) -> None:
125 from dask.dataframe.dask_expr.diagnostics import explain
126
127 return explain(self, stage, format)
128
129 def pprint(self):
130 for line in self._tree_repr_lines():

Callers

nothing calls this directly

Calls 1

explainFunction · 0.90

Tested by

no test coverage detected