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

Method operation

dask/dataframe/dask_expr/_expr.py:1317–1320  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

1315
1316 @staticmethod
1317 def operation(*args, **kwargs):
1318 if is_series_like(args[0]):
1319 return args[0]._constructor([total_mem_usage(*args, **kwargs)])
1320 return args[0]._constructor_sliced([total_mem_usage(*args, **kwargs)])
1321
1322 def _divisions(self):
1323 return (None,) * (self.frame.npartitions + 1)

Callers

nothing calls this directly

Calls 3

total_mem_usageFunction · 0.90
is_series_likeFunction · 0.85
_constructorMethod · 0.80

Tested by

no test coverage detected