MCPcopy
hub / github.com/dask/dask / idxmin

Method idxmin

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

Source from the content-addressed store, hash-verified

1873
1874 @derived_from(pd.DataFrame)
1875 def idxmin(self, axis=0, skipna=True, numeric_only=False, split_every=False):
1876 axis = self._validate_axis(axis)
1877 if axis == 1:
1878 return self.map_partitions(
1879 M.idxmin, skipna=skipna, numeric_only=numeric_only, axis=axis
1880 )
1881 return new_collection(self.expr.idxmin(skipna, numeric_only, split_every))
1882
1883 @derived_from(pd.DataFrame)
1884 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