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

Method idxmin

dask/dataframe/dask_expr/_collection.py:1869–1875  ·  view source on GitHub ↗
(self, axis=0, skipna=True, numeric_only=False, split_every=False)

Source from the content-addressed store, hash-verified

1867
1868 @derived_from(pd.DataFrame)
1869 def idxmin(self, axis=0, skipna=True, numeric_only=False, split_every=False):
1870 axis = self._validate_axis(axis)
1871 if axis == 1:
1872 return self.map_partitions(
1873 M.idxmin, skipna=skipna, numeric_only=numeric_only, axis=axis
1874 )
1875 return new_collection(self.expr.idxmin(skipna, numeric_only, split_every))
1876
1877 @derived_from(pd.DataFrame)
1878 def idxmax(self, axis=0, skipna=True, numeric_only=False, split_every=False):

Callers

nothing calls this directly

Calls 4

map_partitionsMethod · 0.95
new_collectionFunction · 0.90
_validate_axisMethod · 0.45
idxminMethod · 0.45

Tested by

no test coverage detected