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

modin.pandas.Index.max

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

Return the maximum value of the Index.

Parameters:
  • axis (int, optional) – For compatibility with NumPy. Only 0 or None are allowed.

  • 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:

Maximum value.

Return type:

scalar

See also

Index.min

Return the minimum value in an Index.

Series.max

Return the maximum value in a Series.

DataFrame.max

Return the maximum values in a DataFrame.

Language: English