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

Method idxmin

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

Source from the content-addressed store, hash-verified

316 return All(self, skipna=skipna, split_every=split_every)
317
318 def idxmin(self, skipna=True, numeric_only=False, split_every=False):
319 return IdxMin(
320 self, skipna=skipna, numeric_only=numeric_only, split_every=split_every
321 )
322
323 def idxmax(self, skipna=True, numeric_only=False, split_every=False):
324 return IdxMax(

Callers 6

test_df_groupby_idxminFunction · 0.45
test_idxmaxminFunction · 0.45

Calls 1

IdxMinClass · 0.90

Tested by 6

test_df_groupby_idxminFunction · 0.36
test_idxmaxminFunction · 0.36