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

Function groupby_slice_transform

dask/dataframe/dask_expr/_groupby.py:1264–1285  ·  view source on GitHub ↗
(
    df,
    grouper,
    key,
    func,
    args,
    group_keys=GROUP_KEYS_DEFAULT,
    dropna=None,
    observed=None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

1262
1263
1264def groupby_slice_transform(
1265 df,
1266 grouper,
1267 key,
1268 func,
1269 args,
1270 group_keys=GROUP_KEYS_DEFAULT,
1271 dropna=None,
1272 observed=None,
1273 **kwargs,
1274):
1275 return _groupby_slice_transform(
1276 df,
1277 grouper,
1278 key,
1279 func,
1280 *args,
1281 group_keys=group_keys,
1282 dropna=dropna,
1283 observed=observed,
1284 **kwargs,
1285 )
1286
1287
1288def _meta_apply_transform(obj, grp_func):

Callers

nothing calls this directly

Calls 1

_groupby_slice_transformFunction · 0.90

Tested by

no test coverage detected