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

Method idxmax

dask/dataframe/dask_expr/_expr.py:323–326  ·  view source on GitHub ↗
(self, skipna=True, numeric_only=False, split_every=False)

Source from the content-addressed store, hash-verified

321 )
322
323 def idxmax(self, skipna=True, numeric_only=False, split_every=False):
324 return IdxMax(
325 self, skipna=skipna, numeric_only=numeric_only, split_every=split_every
326 )
327
328 def mode(self, dropna=True, split_every=False):
329 return Mode(self, dropna=dropna, split_every=split_every)

Calls 1

IdxMaxClass · 0.90

Tested by 7

test_df_groupby_idxmaxFunction · 0.36
test_idxmaxminFunction · 0.36