modin.pandas.DataFrame.idxmin¶
- DataFrame.idxmin(axis=0, skipna=True, numeric_only=False) Self[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/base.py#L1981-L1992)¶
Return index of first occurrence of minimum over requested axis.
- Parameters:
axis ({0 or 1}, default 0) – The axis to use. 0 for row-wise, 1 for column-wise.
skipna (bool, default True) – Exclude NA/null values. If an entire row/column is NA, the result will be NA.
numeric_only (bool, default False:) – Include only float, int or boolean data.
- Return type:
Series if DataFrame input, Index if Series input
Examples