You are viewing documentation about an older version (1.21.0). View latest version

modin.pandas.Index.min

Index.min() None[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.21.0/src/snowflake/snowpark/modin/plugin/extensions/index.py#L1281-L1306)

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.max

Return the maximum value of the object.

Series.min

Return the minimum value in a Series.

DataFrame.min

Return the minimum values in a DataFrame.

语言: 中文