(self, axis=0, skipna=True, numeric_only=False, split_every=False)
| 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): |
nothing calls this directly
no test coverage detected