Return the minimum value of the Index.
Dummy argument for consistency with Series.
Exclude NA/null values when showing the result.
Additional arguments and keywords for compatibility with NumPy.
Minimum value.
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.
Examples
>>> idx = pd.Index([3, 2, 1])
>>> idx.min()
1
>>> idx = pd.Index(['c', 'b', 'a'])
>>> idx.min()
'a'
For a MultiIndex, the minimum is determined lexicographically.
>>> idx = pd.MultiIndex.from_product([('a', 'b'), (2, 1)])
>>> idx.min()
('a', 1)
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Index.min.html