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

Method _meta

dask/dataframe/dask_expr/_expr.py:703–716  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

701
702 @functools.cached_property
703 def _meta(self):
704 meta = self.operand("meta")
705 return _get_meta_map_partitions(
706 self.args,
707 [
708 e
709 for e in self.args
710 if isinstance(e, Expr) and not isinstance(e, _DelayedExpr)
711 ],
712 self.func,
713 self.kwargs,
714 meta,
715 self.parent_meta,
716 )
717
718 def _divisions(self):
719 # Unknown divisions

Callers

nothing calls this directly

Calls 2

_get_meta_map_partitionsFunction · 0.85
operandMethod · 0.80

Tested by

no test coverage detected