MCPcopy
hub / github.com/dask/dask / compute

Method compute

dask/dataframe/dask_expr/_groupby.py:1618–1623  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

1616 )
1617
1618 def compute(self, **kwargs):
1619 raise NotImplementedError(
1620 "DataFrameGroupBy does not allow compute method."
1621 "Please chain it with an aggregation method (like ``.mean()``) or get a "
1622 "specific group using ``.get_group()`` before calling ``compute()``"
1623 )
1624
1625 def __getitem__(self, key):
1626 if is_scalar(key):

Calls

no outgoing calls