modin.pandas.Index.min¶
- Index.min() None[source]¶
 Return the minimum value of the Index.
- Parameters:
 axis ({None}) – Dummy argument for consistency with Series.
skipna (bool, default True) – Exclude NA/null values when showing the result.
*args – Additional arguments and keywords for compatibility with NumPy.
**kwargs – Additional arguments and keywords for compatibility with NumPy.
- Returns:
 Minimum value.
- Return type:
 scalar
See also
Index.maxReturn the maximum value of the object.
Series.minReturn the minimum value in a Series.
DataFrame.minReturn the minimum values in a DataFrame.