(self, **kwargs)
| 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): |
no outgoing calls